String( int:count, string:char ) → string
Returns a string consisting of count copies of the character char.
Example:
Output(String(5, "A")); --> AAAAA
See also: Space