───COPIES(string,n)──────
COPIES returns n concatenated copies of string. n must be a nonnegative whole number.
Here are some examples:
COPIES('abc',3) -> 'abcabcabc' COPIES('abc',0) -> ''