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