7 lines
89 B
Kotlin
7 lines
89 B
Kotlin
package foo
|
|
|
|
fun box(): Boolean {
|
|
val b = -3
|
|
val c = +3
|
|
return (c - b) == 6
|
|
} |