Skip to content

Instantly share code, notes, and snippets.

@Opalo
Created November 11, 2015 16:57
Show Gist options
  • Save Opalo/45fde12768cafa56c12d to your computer and use it in GitHub Desktop.
Save Opalo/45fde12768cafa56c12d to your computer and use it in GitHub Desktop.
def lol(String s, Closure c) {
print "s=$s"
c()
}
lol("a") { println "c" }
lol("a", { println "c" })
lol("a")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment