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

7 lines
62 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
value = 0;
While[
value++;
Print[value];
Mod[value,6]!=0
]