mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
9 lines
147 B
Plaintext
9 lines
147 B
Plaintext
import compound;
|
|
|
|
var a = [false, false, false];
|
|
var d = ["one": false, "two": false];
|
|
|
|
print d.containsKey("one");
|
|
print d.containsKey("three");
|
|
|