RosettaCodeData/Task/Loops-Do-while/Salmon/loops-do-while.salmon

8 lines
64 B
Text
Raw Permalink Normal View History

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