Files
Toy/scripts/test/index-dictionaries.toy
2022-09-06 18:59:25 +10:00

22 lines
247 B
Plaintext

//test basic insertion
{
var d = [:];
d["foo"] = "bar";
assert d == ["foo":"bar"], "basic insertion failed";
}
//test dot insertion
{
var d = [:];
d.foo = "bar";
assert d == ["foo":"bar"], "dot insertion failed";
}
print "All good";