RosettaCodeData/Task/Loops-Do-while/Salmon/loops-do-while.salmon
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
64 B
Text

variable x := 0;
do
{
++x;
x!
}
while (x % 6 != 0);