import io:* fun func(it: ref int) { it++ fun() { it++ println(it) }() } fun main(): int { var it = 7 func(it) println(it) return 0 }