Content deleted Content added
→Statements: +DIM |
→Statements: Note lack of WHILE |
||
Line 55:
|-
| <code>LET ''var''=''expr''</code>
| Assign a value to a variable. Unlike many modern dialects of BASIC, <code>LET</code> was not an optional word.
|-
| <code>NEXT ''var''</code>
Line 75:
| Return to the line following a <code>GOSUB</code>.
|}
Note in particular the lack of a <code>WHILE</code>-like statement; <code>FOR</code> was the only looping construct available to programmers.
=== Variables ===
|