6 lines
84 B
Kotlin
6 lines
84 B
Kotlin
fun when2(i: Int): Int {
|
|
when (i) {
|
|
0 -> return 42
|
|
else -> return 24
|
|
}
|
|
} |