|
set "xx" to 0
|
|
set "yy" to 0
|
|
. "Assign random values to array"
|
|
: "loopX"
|
|
set "array&xx&,&yy&" to random 0 to 99
|
|
inc "xx" by 1
|
|
if "xx" < 32 then "loopX"
|
|
set "xx" to 0
|
|
inc "yy" by 1
|
|
if "yy" < 32 then "loopX"
|
|
|
|
* "Value of 16,16 is ('array('16'),('16')')."
|
|
end
|