Files
Toy/scripts/hello_world.toy
T
Ratstail91 f11bc95833 For loop on arrays working, untested, read more
Needed: break and continue support, extensive tests, other iterables
2026-05-24 18:13:18 +10:00

10 lines
88 B
Plaintext

var array = ["foo", "bar"];
for (var i in array) {
print i;
break;
}
print "done";