| CLEAR | CLEAR [...]
|
| CONT | CONT
|
| DATA | DATA <literal>[,<literal>]
|
| DEF | DEF FN<name>(<argument variables>) = <expression>
|
| DIM | DIM <variable name>(<dimensions>)[,...]
|
| END | END
|
| FOR | FOR <variable>=x TO y [STEP z]
|
| GOSUB | GOSUB <line number>
|
| GOTO | GOTO <line number>
|
| IF | IF expression THEN statements [ELSE statements]
|
| INPUT | INPUT [,][<"prompt string">;]<list of variables>
|
| LET | [LET] <variable>=<expression>
|
| LIST | LIST [<from line number>][-<to line number>]
|
| LOAD | LOAD <filename>
|
| NEW | NEW
|
| NEXT | NEXT [<variable>][,<variable>...]
|
| ON | ON expression <GOTO|GOSUB> line[,line]
|
| PRINT | PRINT [<list of expressions>]
|
| READ | READ <variable>[,<variable>]
|
| REM | REM <anything> or ' <anything>
|
| RESTORE | RESTORE [<line number>]
|
| RUN | RUN [<line number>]
|
| SAVE | SAVE <filename>
|
| STOP | STOP
|