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