Le 14 parole chiave sono, in ordine alfabetico,
Else, ElseIf, EndFor, EndIf, EndSub, EndWhile, For, Goto, If, Step, Sub, Then, To, While
Permettono di realizzare le classiche strutture di controllo
if, for, while e sub.
If
If EL1 Then I1 EndIf
Else
If EL1 Then I1 Else I2 EndIf
ElseIf
If EL1 Then I1 ElseIf EL2 Then I2 Else I3 EndIf
For
For I=1 To N I1 EndFor
Step
For I=1 To N Step X I1 EndFor
While
While EL1 I1 EndWhile
Sub
Sub NOME I1 EndSub
Goto
Goto NOME I1 NOME: I2