6 lines
69 B
Kotlin
6 lines
69 B
Kotlin
package foo
|
|
|
|
fun box() = when {
|
|
1 > 3 -> false
|
|
else -> true
|
|
} |