Skip to content

Instantly share code, notes, and snippets.

@ahmadseleem
Last active August 29, 2015 14:02
Show Gist options
  • Save ahmadseleem/5945df3b35701586151b to your computer and use it in GitHub Desktop.
Save ahmadseleem/5945df3b35701586151b to your computer and use it in GitHub Desktop.
extension Int {
func times(task: () -> () ) {
for i in 0..<self {
task()
}
}
}
10.times { println("Hello!") }
0.times { println("Hello!") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment