5 lines
187 B
Text
5 lines
187 B
Text
|
|
[rows, cols] = dims = eval[input["Enter dimensions: ", ["Rows", "Columns"]]]
|
||
|
|
a = new array[dims, 0] // Create and initialize to 0
|
||
|
|
a@(rows-1)@(cols-1) = 10
|
||
|
|
println[a@(rows-1)@(cols-1)]
|