Halcyon/demo.lang
2024-10-15 11:20:35 -05:00

7 lines
50 B
Plaintext

i := 0;
while i < 10 {
i = i + 1;
print i;
}