6 lines
146 B
Text
6 lines
146 B
Text
|
|
DIM A%[10] ! the array size is 10 integers
|
||
|
|
|
||
|
|
DIM B[10] ! the array will hold 10 floating point values
|
||
|
|
|
||
|
|
DIM C$[12] ! a character array of 12 bytes
|