8 lines
81 B
Kotlin
8 lines
81 B
Kotlin
package foo
|
|
|
|
|
|
fun box(): Boolean {
|
|
var a = 3
|
|
a += 3
|
|
return (a == 6)
|
|
} |