RosettaCodeData/Task/Loops-Do-while/Fantom/loops-do-while.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
173 B
Text

class Main
{
public static Void main ()
{
i := 0
while (true)
{
i += 1
echo (i)
if (i % 6 == 0) break // end loop on condition
}
}
}