RosettaCodeData/Task/Loops-Do-while/Dyalect/loops-do-while.dyalect

8 lines
59 B
Plaintext

var x = 0
do
{
x += 1
print(x)
} while x % 6 != 0