mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-16 07:14: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'.
26 lines
308 B
Plaintext
26 lines
308 B
Plaintext
//standard example
|
|
var counter: int = 1;
|
|
|
|
while (counter <= 100) {
|
|
var result: string = "";
|
|
|
|
if (counter % 3 == 0) {
|
|
result = result .. "fizz";
|
|
}
|
|
|
|
if (counter % 5 == 0) {
|
|
result = result .. "buzz";
|
|
}
|
|
|
|
//finally
|
|
if (result != "") {
|
|
print result;
|
|
}
|
|
else {
|
|
print counter;
|
|
}
|
|
|
|
counter += 1;
|
|
}
|
|
|