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

7 lines
72 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
mutable x = 0;
do
{
x++;
WriteLine($"$x");
} while (x % 6 != 0)