s = string.rep (str, n)
Returns a string which is n copies of the source string concatenated together. string.rep ("moo", 4) --> moomoomoomoo
string.rep ("moo", 4) --> moomoomoomoo