6 lines
72 B
Kotlin
6 lines
72 B
Kotlin
fun foo(x: Int) {
|
|
when (x) {
|
|
2 -> {}
|
|
3 -> {}
|
|
}
|
|
} |