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

7 lines
257 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/*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.*/