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