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

6 lines
139 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
INPUT "Enter array dimensions separated by a comma: " a%, b%
DIM array(a%, b%)
array(1, 1) = PI
PRINT array(1, 1)