RosettaCodeData/Task/Loops-Do-while/Mathematica/loops-do-while.math

7 lines
62 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
value = 0;
While[
value++;
Print[value];
Mod[value,6]!=0
]