Add variable storage (scalar and array), program line storage with RUN/LIST/NEW, and full control flow: FOR/NEXT, GOTO, GOSUB/RETURN, IF/THEN/ELSE, WHILE/WEND, ON GOTO/GOSUB, DATA/READ/RESTORE. New modules: interp.c (1445 lines - execution loop and statement dispatcher), vars.c, arrays.c, input.c. Version bumped to 0.2.0. 16 test programs pass including Leibniz pi and prime sieve.
8 lines
126 B
QBasic
8 lines
126 B
QBasic
10 REM Nested FOR loops - multiplication table
|
|
20 FOR I = 1 TO 5
|
|
30 FOR J = 1 TO 5
|
|
40 PRINT I*J;
|
|
50 NEXT J
|
|
60 PRINT
|
|
70 NEXT I
|