Create a two-dimensional array at runtime: Difference between revisions

Content added Content deleted
(→‎{{header|Python}}: Python 2 is reaching end of life. Adjusting code so that it works in Python 3)
Line 803:
 
=={{header|Elena}}==
ELENA 45.x0 :
 
Typified array
Line 816:
console.loadLine(n,m);
var myArray := newclass Matrix<int>.allocate(n,m);
myArray.setAt(0,0,2);