Skip to content

Instantly share code, notes, and snippets.

@dboundz
Created July 23, 2014 19:06
Show Gist options
  • Save dboundz/d1ce8261c0be7e50e9e6 to your computer and use it in GitHub Desktop.
Save dboundz/d1ce8261c0be7e50e9e6 to your computer and use it in GitHub Desktop.
Swift extensions...
extension Int {
func repeat(task: () -> ()) {
for i in 0..self {
task()
}
}
}
500.repeat {
println("hello")
}
// Would print 'hello' 500 times
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment