var type name # üres utasítás
var Int i
var type name := value # értékadás
var Int i := 7
Példa:
if condition1
instructions1
[eif condition2
instructions2]
[eif condition3
instructions3]
...
[else
instruction4]
Az „eif” and „else” részek opcionálisak.
Példa:
while condition
instructions
Példa:
for variable start limit [step step]
instructions
A "step" paraméter opcionális.
Példa:
shunt condition1 result1 [condition2 result2]
Példa:
part name
body
A body-ban használható a : leave name vagy a restart name utasítás.
A leave a C/C++ break, a restart pedig a continue utasításával ekvivalens.
Példa:
Kidolgozásra vár.