Syntax: @REPEAT(S, N)
S = a string value
N = a numeric value
@REPEAT returns the string S repeated N times.
Examples:
Z1 = ``There's no place like home.''
@REPEAT(Z1, 1) = ``There's no place like home.''
@REPEAT(Z1, 3) = ``There's no place like home.There's no place like home.There's no place like home.''
@REPEAT(Z1, 0) = `` ''