Skip to content

Instantly share code, notes, and snippets.

@k0nserv
Last active August 29, 2015 14:03
Show Gist options
  • Save k0nserv/d62c248ad2e8c0173297 to your computer and use it in GitHub Desktop.
Save k0nserv/d62c248ad2e8c0173297 to your computer and use it in GitHub Desktop.
func _while(condition: @autoclosure () -> BooleanType, action: () -> ()) {
while condition() {
action()
}
}
var i = 0
_while(i < 10) {
println("\(i)")
i += 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment