Reference > Examples
Reference
Examples
Generated from LANGUAGE.md at bf2cba0, 2026-08-22.
Hello World#
Print "Hello, World!".
Variables and Arithmetic#
a number called x is 3.
a number called y is 5.
Print the x add the y.
Function Definition and Call#
To 'add numbers' with a number called x and a number called y. Return a number, the x add y.
Print 'add numbers' of 3 and 5.
Counting Loop#
Set the number called counter to 1.
While the counter is less than 10, print the counter, increment the counter.
FizzBuzz#
To 'check divisibility' with a number called divisor and a number called dividend. Return a boolean, the divisor modulo the dividend is 0.
For each number from 1 to 15, print the number, but if 'check divisibility' of the number and 6 is true print "fizz buzz" but if 'check divisibility' of the number and 2 is true print "fizz" but if 'check divisibility' of the number and 3 is true print "buzz".