Hello world
This tutorial assumes you have basic programming knowledge,
and focuses more on the syntax than actual programming skills.
To write a hello world program, use the built in print function.
print("Hello world!"); // This is a comment
You can also print numbers!
print(12345678); // The semicolon is required.
You can store things in variables, like so.
Message = "Hello ";
You can disable new lines by adding a 1 here!
print(Message, 1);
print("world!");
Full program
Message = "Hello ";
print(Message, 1);
print("world!");
print(12345678);
Table of contents
Next: 1.1 User input