Returns a string made of the specified string repeated num number of times. If num <= 0, an empty string is returned.
num
Example:
dup("blah-", 3)
"blah-blah-blah-"