9 lines
89 B
Kotlin
9 lines
89 B
Kotlin
import a.b.c
|
|
val x = 0
|
|
fun fn() {
|
|
println(x)
|
|
}
|
|
|
|
var y = fn()
|
|
y = y+1
|