public native static operator*( readonly first as String, readonly count as UInt ) as String
Repeats a string a given number of times.
A new String with repeated content.
assert "ha" * 2u == "haha"