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.*/
|