18 lines
190 B
Plaintext
18 lines
190 B
Plaintext
import simple_print:*
|
|
|
|
fun func(it: ref int) {
|
|
it++
|
|
fun() {
|
|
it++
|
|
println(it)
|
|
}()
|
|
}
|
|
|
|
fun main(): int {
|
|
var it = 7
|
|
func(it)
|
|
println(it)
|
|
|
|
return 0
|
|
}
|