Skip to content

Instantly share code, notes, and snippets.

@k0nserv
Last active August 29, 2015 14:05
Show Gist options
  • Save k0nserv/94d5645d806cd9873ab5 to your computer and use it in GitHub Desktop.
Save k0nserv/94d5645d806cd9873ab5 to your computer and use it in GitHub Desktop.
// Perform some action 50% of the time
func maybe(action: () -> ()) {
if arc4random_uniform(2) == 0 {
action()
}
}
maybe {
println("Hello World?")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment