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