11 lines
126 B
Plaintext
11 lines
126 B
Plaintext
when (n) {
|
|
1 -> {
|
|
res = "one"
|
|
}
|
|
2 -> {
|
|
res = "two"
|
|
}
|
|
else -> {
|
|
res = "???"
|
|
}
|
|
} |