RosettaCodeData/Task/Create-a-two-dimensional-array-at-runtime/BBC-BASIC/create-a-two-dimensional-array-at-runtime.bbc

6 lines
139 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
INPUT "Enter array dimensions separated by a comma: " a%, b%
DIM array(a%, b%)
array(1, 1) = PI
PRINT array(1, 1)