RosettaCodeData/Task/Loops-Do-while/REXX/loops-do-while-2.rexx

7 lines
257 B
Rexx
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
/*REXX program demonstrates a DO UNTIL construction. */
2013-04-10 21:29:02 -07:00
2013-10-27 22:24:23 +00:00
do v=1 until v//6==0 /*REXX // is the ÷ remainder.*/
2013-04-10 21:29:02 -07:00
say v
end
/*stick a fork in it, we're done.*/