A step-by-step guide to developing with Neuron . Install Neuron With installed, type the following into your command line: npm install -- neuron-lang npm global Create a new file Create a file with the name . This will contain our program. In the command line, navigate to the directory with the file: main.neuron /to/main.neuron cd path Create a simple Hello, World! program In , type the following: main.neuron sayHello { log(Hello # !); } 0 This is the standard function and object syntax, with being the first parameter passed as an argument to the function . The function can now be called as follows: #0 sayHello sayHello( ) world ; This will now log “Hello world!” Inline functions We can create a new function that can return a value as well. In main.neuron: sayHello { (Hello # ); } log([ world] Neuron!); return 0 // or return: Hello #0 => sayHello in When run in the command line with , it should log “Hello world in Neuron!” neuron main.neuron Passing multiple parameters Now we can pipe the output of another function into our function: sayHello add { (# plus # is [# + # ].); } sayHello { log(Hello! It appears though [ # # ]!); } sayHello( , ); return 0 1 0 1 as => add 0 1 0 1 The output of our program should be “Hello! It appears as though 0 plus 1 is 1.” Iterators We can further extend the capabilities of our program with iterators: ( ) { sayHello(#i, [#i - ]); } for => i 10 1 This will now log “Hello! It appears as though 0 plus -1 is 0.” and “Hello! It appears as though 1 plus 0 is 1.” until the iterator, represented by , has reached nine. #i Other features of the Neuron programming language capable of being integrated in our program include conditionals, variables, iterators, and objects. Running the program With Neuron installed through , the file can be executed as such: npm neuron main .neuron What next? Neuron can be used for web applications in the browser as well. The contains information about the Neuron language, various tutorials, and a reference for the Neuron language. Neuron is currently under heavy development, and your contributions and support are welcome! Neuron is an incredibly efficient language for front-end web development . If you are interested in the Neuron language and would like to know more, visit the repository . documentation Resources Neuron Language Learn Neuron