4e0d2bc23c
Hacky way to avoid passing builtins into this code
5 lines
83 B
Kotlin
Vendored
5 lines
83 B
Kotlin
Vendored
fun box() : String = when (true) {
|
|
((true)) -> "OK"
|
|
(1 == 2) -> "Not ok"
|
|
}
|