// ALNOOR Documentation
First of all, create a project using the instructions
detailed on this page. Then write the following code into the "config.vn" file:
None
Then edit the "main.lsmx" file and write the following code into it:
fn main() { // Main function
println!("Hello World!"); // Print "Hello World!"
}
To run the code, open a terminal and type:
lnrc -a path/to/main.lsmx path/to/config.vn
This will automatically transpile to a .java file and then
compile to a .class file and be packed into a .jar file and run.
Like so:
None
fn main() { // Main function
println!("Hello World!"); // Print "Hello World!"
}
lnrc -a path/to/main.lsmx path/to/config.vn