Skip to content

Instantly share code, notes, and snippets.

@mattn
Created March 31, 2014 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattn/9892382 to your computer and use it in GitHub Desktop.
Save mattn/9892382 to your computer and use it in GitHub Desktop.
#!anko
func(x) {
return func(y) {
x(y)
}
}(func(z) {
println("Yay!", z)
})("hello world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment