f11bc95833
Needed: break and continue support, extensive tests, other iterables
10 lines
88 B
Plaintext
10 lines
88 B
Plaintext
|
|
|
|
var array = ["foo", "bar"];
|
|
|
|
for (var i in array) {
|
|
print i;
|
|
break;
|
|
}
|
|
|
|
print "done"; |