nondescript/tests/while.nds

8 lines
56 B
Plaintext

var i = 1;
while (i < 300) {
i = i + 1;
};
print i;