Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Loops-Break/REXX/loops-break.rexx
Normal file
10
Task/Loops-Break/REXX/loops-break.rexx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/*REXX program demonstrates a FOREVER DO loop with a test to LEAVE (break). */
|
||||
/*REXX's RANDOM BIF returns an integer.*/
|
||||
do forever /*perform loop until da cows come home.*/
|
||||
a=random(19) /*same as: random(0, 19) */
|
||||
call charout , right(a, 5) /*show A right─justified, column 1.*/
|
||||
if a==10 then leave /*is random #=10? Then cows came home.*/
|
||||
b=random(19) /*same as: random(0, 19) */
|
||||
say right(b, 5) /*show B right─justified, column 2.*/
|
||||
end /*forever*/ /* [↑] CHAROUT , xxx writes to term.*/
|
||||
/*stick a fork in it, we're all done. */
|
||||
Loading…
Add table
Add a link
Reference in a new issue