Variables
Comments
We have both single-line and multi-line comments
Single line comments start with // and continue to the end of the line.
Block comments are enclosed within /_ ... _/ and can span as many lines as necessary.
Conditional expressions
if statement
If you want to provide an else statement
Loops
While loop
For loop
Break and continue
siya
(Break)
siya
is used to exit a loop prematurely (can used both in pamene
and za
loops).
pitirizani
(Continue)
pitirizani
is used to skip the current iteration of a loop and continue to the next one.