undar-lang/test/while.ul

7 lines
67 B
Plaintext
Executable File

nat i = 0;
while (i < 10) {
print(i as str);
i = i + 1;
}