RosettaCodeData/Task/Loops-Do-while/Nemerle/loops-do-while.nemerle

7 lines
72 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
mutable x = 0;
do
{
x++;
WriteLine($"$x");
} while (x % 6 != 0)