6 lines
188 B
Text
6 lines
188 B
Text
rows:=ask("Rows: ").toInt();
|
|
cols:=ask("columns: ").toInt();
|
|
array:=rows.pump(List.createLong(rows),List.createLong(cols,0).copy);
|
|
array[1][2]=123;
|
|
array.println();
|
|
array[1][2].println();
|