How can you create a String of a given length consisting of the same character - without using a loop?
Ie: create a String 10 characters in length where each character is an asterisk: **********
Similar to this approach in Java: new String(new char[n]).replace("\0", s);