6 lines
62 B
Plaintext
6 lines
62 B
Plaintext
res = when (n) {
|
|
1 -> "one"
|
|
2 -> "two"
|
|
else -> "many"
|
|
}
|