@Repeat - Repeat Directive
Syntax
@REPEAT expr {block}
expr - A valid expression that produces a number
block - A valid block of text
Use
@REPEAT causes the block to be repeated n times, where n is specified by the constant expression.
Example
The following use of the repeat directive,
@repeat 5 {H,}
results in the text "H,H,H,H,H," being inserted into the source file.