3 lines
161 B
Text
3 lines
161 B
Text
10 DIM A%(10): REM the array size is 10 integers
|
|
20 DIM B(10): REM the array will hold 10 floating point values
|
|
30 DIM C$(12): REM a character array of 12 bytes
|