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

8 lines
64 B
Text
Raw Permalink Normal View History

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