Basics
Simple examples to understand how the language works before moving to larger problems
Search pages, live sessions and profiles.
Simple examples to understand how the language works before moving to larger problems
Use PRINT to display messages.
PRINT "Hello" PRINT "World"
Store values in variables and print them.
X = 5 PRINT X
You can perform calculations using operators.
A = 5 + 3 B = A * 2 PRINT B
Use IF statements to control the path of execution.
X = 10 IF X > 5 THEN PRINT "Big" END