Skip to content

Instantly share code, notes, and snippets.

@nuclearace
Created February 8, 2015 19:56
Show Gist options
  • Save nuclearace/67066ada8a3c3086d4d3 to your computer and use it in GitHub Desktop.
Save nuclearace/67066ada8a3c3086d4d3 to your computer and use it in GitHub Desktop.
infix operator ! {}
var n = 10
func !(lhs:() -> Void, rhs:Bool) {
if rhs {
lhs()
}
}
({n += 10} ! n == 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment