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

8 lines
64 B
Plaintext

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