7 lines
99 B
Kotlin
7 lines
99 B
Kotlin
fun foo(x: Int) {
|
|
val y: Unit = when (x) {
|
|
2 -> {}
|
|
3 -> {}
|
|
}
|
|
return y
|
|
} |