Skip to content

Instantly share code, notes, and snippets.

@lildata
Created June 4, 2015 17:51
Show Gist options
  • Save lildata/fcd3e751d837c7461500 to your computer and use it in GitHub Desktop.
Save lildata/fcd3e751d837c7461500 to your computer and use it in GitHub Desktop.
Funny, defining an "unless" construct
def unless(expr: Boolean)(perform: ()=>Unit) { if(!expr) perform() }
unless(6 == 5) { ()=>println("Hello world") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment