RosettaCodeData/Task/Loops-Do-while/Icon/loops-do-while.icon
2023-07-01 13:44:08 -04:00

8 lines
88 B
Text

procedure main()
i := 0
repeat {
write(i +:= 1)
if i % 6 = 0 then break
}
end