|
How do I create and use 2 dimensional arrays? I know how to use normal arrays in graal but how would I do something along the lines of this:
this.array={{1,2,3,4,5,6},{11,22,33,44,55,66}};
And I would access it with something like:
message #v(this.array[0][1]);
which return the value 22
would something like this work like how I want it above?
this.arrayy1={1,2,3,4,5,6}
this.arrayy2={11,22,33,44,55,66}
this.array={this.arrayy1,this.arrayy2}; |