Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
38
Task/Loops-Nested/REBOL/loops-nested.rebol
Normal file
38
Task/Loops-Nested/REBOL/loops-nested.rebol
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
REBOL [
|
||||
Title: "Loop/Nested"
|
||||
URL: http://rosettacode.org/wiki/Loop/Nested
|
||||
]
|
||||
|
||||
; Number formatting.
|
||||
zeropad: func [pad n][
|
||||
n: to-string n insert/dup n "0" (pad - length? n) n]
|
||||
|
||||
; Initialize random number generator from current time.
|
||||
random/seed now
|
||||
|
||||
; Create array and fill with random numbers, range 1..20.
|
||||
soup: array [10 10]
|
||||
repeat row soup [forall row [row/1: random 20]]
|
||||
|
||||
print "Loop break using state variable:"
|
||||
done: no
|
||||
for y 1 10 1 [
|
||||
for x 1 10 1 [
|
||||
prin rejoin [zeropad 2 soup/:x/:y " "]
|
||||
if 20 = soup/:x/:y [done: yes break]
|
||||
]
|
||||
prin crlf
|
||||
if done [break]
|
||||
]
|
||||
|
||||
print [crlf "Loop break with catch/throw:"]
|
||||
catch [
|
||||
for y 1 10 1 [
|
||||
for x 1 10 1 [
|
||||
prin rejoin [zeropad 2 soup/:x/:y " "]
|
||||
if 20 = soup/:x/:y [throw 'done]
|
||||
]
|
||||
prin crlf
|
||||
]
|
||||
]
|
||||
prin crlf
|
||||
Loading…
Add table
Add a link
Reference in a new issue