mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-05-01 22:40:10 +10:00
63dfd33e5e
Currently searching for an issue related to compounds.
14 lines
275 B
Plaintext
14 lines
275 B
Plaintext
//snipped out of the tests, this seems fine?
|
|
|
|
//nested
|
|
var example = [
|
|
"outer": ["inner": true],
|
|
"alpha": 1,
|
|
"beta": 2,
|
|
"gamma": 3
|
|
];
|
|
|
|
print example;
|
|
assert example == ["alpha": 1, "beta": 2, "gamma": 3, "outer": ["inner": true]], "nested tables failed";
|
|
|
|
return example; |