4 lines
235 B
Text
4 lines
235 B
Text
|
|
10 DIM a$(10): REM This array will be 10 characters long
|
||
|
|
20 DIM b(10): REM this will hold a set of numbers. The fixed number of bytes per number is implementation specific
|
||
|
|
30 LET c=5: REM this is a single numerical value of fixed size
|