5 lines
95 B
Plaintext
5 lines
95 B
Plaintext
fun box() = when {
|
|
1 > 2 -> "false"
|
|
1 >= 1 -> "OK"
|
|
else -> "else"
|
|
} |