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