Sync
This commit is contained in:
parent
6f050a029e
commit
776bba907c
3887 changed files with 59894 additions and 7280 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue