Files
Toy/scripts/test_tables.toy
T
Ratstail91 63dfd33e5e Added arrays and tables to the bytecode inspector
Currently searching for an issue related to compounds.
2026-04-22 14:31:17 +10:00

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;