RosettaCodeData/Task/Loops-Do-while/Fantom/loops-do-while.fantom

14 lines
173 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class Main
{
public static Void main ()
{
i := 0
while (true)
{
i += 1
echo (i)
if (i % 6 == 0) break // end loop on condition
}
}
}