mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Getting the array's length is still not available yet, so I'm not marking arrays as done - but everything that is there is tested. I've also tweaked the assert output callbacks to also print 'assert failure'.
14 lines
164 B
Plaintext
14 lines
164 B
Plaintext
{
|
|
//if and while work together
|
|
var count = 1;
|
|
while (count <= 10) {
|
|
if (count % 2 == 0) {
|
|
print "even";
|
|
}
|
|
else {
|
|
print "odd";
|
|
}
|
|
count += 1;
|
|
}
|
|
}
|