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) -> "" |