6 lines
70 B
Kotlin
Vendored
6 lines
70 B
Kotlin
Vendored
package foo
|
|
|
|
fun box() = when {
|
|
1 > 3 -> "fail"
|
|
else -> "OK"
|
|
} |