.repeat (also .rept)

.repeat count

Assemble a block of code (between here and the matching .loop directive) count times.

.repeat 3
    .echo "MELON"
.loop
; Displays 'MELONMELONMELON'