Skip to content

Instantly share code, notes, and snippets.

@hallski
Created October 10, 2014 14:06
Show Gist options
  • Save hallski/48597d7e36035ae2d6c3 to your computer and use it in GitHub Desktop.
Save hallski/48597d7e36035ae2d6c3 to your computer and use it in GitHub Desktop.
func spaces(n: Int) -> String {
return reduce(0..<max(0, n), "") { r, _ in r + " " }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment