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