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