I want to make a string with n blank spaces using Swift, but without using a for loop or manually like this:
for
// string with 5-blank spa
In Swift 3:
var s = String(repeating: " ", count: 5)
https://developer.apple.com/reference/swift/string/2427723-init