mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
12 lines
127 B
Plaintext
12 lines
127 B
Plaintext
|
|
|
|
//test nested indexing
|
|
{
|
|
var a = [[[0]]];
|
|
|
|
a[0][0][0] = 42;
|
|
print a;
|
|
assert a[0][0] == [42], "nested indexing failed";
|
|
}
|
|
|