RosettaCodeData/Task/Loops-Do-while/REXX/loops-do-while-1.rexx
2023-07-01 13:44:08 -04:00

7 lines
276 B
Rexx

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