2009-06-08 15:12:33 +00:00

8 lines
90 B
Plaintext

for (var i = 0; i < 10; i += 1) {
print(i)
}
for (i = 10; i >= 0; i -= 2) {
print(i)
}