Files
hakorune/simple_loop_test.nyash

6 lines
56 B
Plaintext

local i
i = 0
loop(i < 3) {
print(i)
i = i + 1
}