// ALNOOR Documentation

Interacting with the file system is an indispensible part of any programming language.
In the ALNOOR.STD.IO.FILIO library, there are easy to use functions to facilitate FileIO.
Here is how to use it:

                    
                    STD.IO.FILEIO
                    
                
                    
                        fn main() {
                            create (
                                "hello.txt"
                            );
                            write (
                                "hello.txt",
                                "Hello World!"
                            );
                            print! (
                                read (
                                    "hello.txt"
                                )
                            );
                        }
                    
                
To run the code, open a terminal and type:
                    
                        lnrc -a path/to/main.lsmx path/to/config.vn
                    
                
This will print out, "Hello world!" but also create a file called hello.txt,
written in which is the same string.