Does Swift init(count:, repeatedValue:) work?
Tested this from the reference: https://developer.apple.com/documentation/swift var string = String(count: 5, repeatedValue: "a") // string is "aaaaa" I got this error: Playground execution failed: error: :5:14: error: could not find an overload for 'init' that accepts the supplied arguments var string = String(count: 5, repeatedValue: "a") Does this actually work? It seems that you have to explicitly pass in a Character type to it to function. This works for me. let char = Character("a") let string = String(count: 5, repeatedValue: char) Although, there may be bug mixed in with all this as