RosettaCodeData/Task/Loops-Do-while/GML/loops-do-while.gml

8 lines
80 B
Plaintext

i = 0
do
{
i += 1
show_message(string(i))
}
until (i mod 6 = 0)