bashor
fun test1() { val f = { val g = { println("i am g") } println("i am f") g() } println("i am test1") f() }