8 lines
76 B
Kotlin
8 lines
76 B
Kotlin
package foo
|
|
|
|
var b = 3
|
|
|
|
fun box(): Boolean {
|
|
b = 2
|
|
return (b == 2)
|
|
} |