REPEAT - repeat a set of operations N times.

Usage:

repeat  N,CODE_BLOCK

Where:

N
is the number of times to repeat the operations.
CODE_BLOCK
is a code block contain the set of operations to repeat.

Description:

"repeat" repeats a set of operations N times.

Examples:

 A:  .var  0
 repeat 4,{.data A; A .set A+1}
    #generates
 .data 0
 .data 1
 .data 2
 .data 3

Copyright © 1996, Thinkage Ltd.