Rebol Programming/loop
USAGE:
editLOOP count block
DESCRIPTION:
editEvaluates a block a specified number of times.
LOOP is a native value.
ARGUMENTS:
edit- count -- Number of repetitions (Type: integer)
- block -- Block to evaluate (Type: block)
SOURCE CODE
editloop: native[ "Evaluates a block a specified number of times." count [integer!] "Number of repetitions" block [block!] "Block to evaluate" ]