ROPE Language Reference - "repeat"

The "repeat" action executes a block of commands a specified number of times. The syntax is one of..

 count { block } repeat
 repeat( count { block } )

For example..

repeat( 10 { println( "Hello" ) } )