mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
6 lines
69 B
Plaintext
6 lines
69 B
Plaintext
|
|
var a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
|
|
|
|
a[1][1] *= 10;
|
|
|
|
print a; |