repeat returns a new string, composed of the string str repeated count times. If count is zero, an empty string '' is returned.
repeat('bar',2) -> 'barbar'