RosettaCodeData/Task/Loops-Do-while/REXX/loops-do-while-2.rexx
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

6 lines
257 B
Rexx

/*REXX program demonstrates a DO UNTIL construction. */
do v=1 until v//6==0 /*REXX // is the ÷ remainder.*/
say v
end
/*stick a fork in it, we're done.*/