Product Site

5.1.7.55. copies

Returns n concatenated copies of the receiving string. The n must be a positive whole number or zero.
Example 5.93. String class — copies method
Say "abc"~copies(3)    -->    "abcabcabc"
Say "abc"~copies(0)    -->    ""