RosettaCodeData/Task/Create-a-two-dimensional-array-at-runtime/ALGOL-68/create-a-two-dimensional-array-at-runtime.alg

7 lines
164 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
main:(
print("Input two positive whole numbers separated by space and press newline:");
[read int,read int] INT array;
array[1,1]:=42;
print (array[1,1])
)