github.com/mattn/anko@v0.1.10/_example/scripts/anonymous-call.ank (about)

     1  #!anko
     2  
     3  func(x) {
     4    return func(y) {
     5      x(y)
     6    }
     7  }(func(z) {
     8    println("Yay!", z)
     9  })("hello world")