10 lines
114 B
Kotlin
10 lines
114 B
Kotlin
fun z() {}
|
|
|
|
fun foo(x: Int) {
|
|
when {
|
|
x == 21 -> z()
|
|
x == 42 -> z()
|
|
else -> {}
|
|
}
|
|
}
|