// ALNOOR Documentation

As with the last tutorial, initialise a project and then write
the following code into the "config.vn" file:
                    
                    STD.IO.STR
                    
                
Then edit the "main.lsmx" file and write the following code into it:
                    
                    fn main() { // Main function
                        while (true) { // Loop
                            println! ( // Print
                                in_str() // Input (String)
                            );
                        }
                    }
                    
                
To run the code, open a terminal and type:
                    
                        lnrc -a path/to/main.lsmx path/to/config.vn
                    
                
Now watch as your program echoes out your input!