str * integer â new_str
Instance Public methods
Copy â Returns a new String containing integer copies of the
receiver. integer must be greater than or equal to 0.
"Ho! " * 3 #=> "Ho! Ho! Ho! " "Ho! " * 0 #=> ""
Copy â Returns a new String containing integer copies of the
receiver. integer must be greater than or equal to 0.
"Ho! " * 3 #=> "Ho! Ho! Ho! " "Ho! " * 0 #=> ""
Please login to continue.