6 lines
139 B
Text
6 lines
139 B
Text
|
|
INPUT "Enter array dimensions separated by a comma: " a%, b%
|
||
|
|
|
||
|
|
DIM array(a%, b%)
|
||
|
|
array(1, 1) = PI
|
||
|
|
PRINT array(1, 1)
|