Skip to content

Instantly share code, notes, and snippets.

@chirino
Created March 16, 2010 13:04
Show Gist options
  • Save chirino/333939 to your computer and use it in GitHub Desktop.
Save chirino/333939 to your computer and use it in GitHub Desktop.
def bar(body:() => String) { println("start"); body(); println("end") }
bar {
println("outside of bar")
var a ="Hello"
var b = "World"
() => {
println("inside of bar")
a+b
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment