Getting started
- To get started, create a
main.runfile in your chosen directory - Type the following code into the file:
#source/rsl fn main(){ print("Welcome to RunLang!"); } - To compile, run
startl main.run - To finish, run the outputed file, which in this case should be main:
./main - To add input, you can use the input function:
#source/rsl fn main(){ print("Welcome to RunLang!"); var my_input = input("Enter something here> "); print(my_input); } - Happy Coding!