Read Me - Common Public License V1.0 - Copyright Notice(©)

copies


>>-copies(n)---------------------------------------------------><

Returns [n] concatenated copies of the receiving string. The [n] must be a positive whole number or zero.

String class - copies method


"abc"~copies(3)    ->    "abcabcabc"
"abc"~copies(0)    ->    ""

Read Me - Common Public License V1.0 - Copyright Notice(©)