forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Repeat
angerangel edited this page Mar 19, 2013
·
1 revision
REPEAT 'word value body
Evaluates a block a number of times or over a series.
REPEAT is a native value.
- word -- Word to set each time (word!)
- value -- Maximum number or series to traverse (number! series! none!)
- body -- Block to evaluate each time (block!)
#SOURCE
repeat: make native! [ [
{Evaluates a block a number of times or over a series.}
'word [word!] "Word to set each time"
value [number! series! none!] "Maximum number or series to traverse"
body [block!] "Block to evaluate each time"
] ]