This commit is contained in:
Ingy döt Net 2013-10-27 22:24:23 +00:00
parent 6f050a029e
commit 776bba907c
3887 changed files with 59894 additions and 7280 deletions

View file

@ -1,7 +1,6 @@
/*REXX program to demonstrate a DO UNTIL construction. */
/*REXX program demonstrates a DO UNTIL construction. */
v=0
do until v//6 == 0
do until v//6==0 /*REXX // is the ÷ remainder.*/
v=v+1
say v
end

View file

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