Syntax:
Then: xx = REPEAT(text,len)
"text" is the string of characters to repeat.
"len" is the number of characters in the result.
Return value:
A string of len characters, created by repeating the characters in text as many times as necessary.
Version Ref: 4.5
Description:
Repeats a string of characters.
Examples:
Draw a horizontal line
Then: show ("10","1") repeat("\ G0","240")
Use PUSHKEY to push 10 right-arrow keys
Then: pushkey repeat ("[CRGT]","60")