STRING
This function will return a string containing repeat sequential occurrences of the string.
Example
PRINT STRING("HI!", 3)
LINE BREAK
DEF string$=STRING("YO!", 3)
PRINT string$
Output
HI!HI!HI!
YO!YO!YO!
YO!YO!YO!
Put down that phone!
Please view me on real computer.
This function will return a string containing repeat sequential occurrences of the string.
PRINT STRING("HI!", 3)
LINE BREAK
DEF string$=STRING("YO!", 3)
PRINT string$