4 lines
70 B
Kotlin
4 lines
70 B
Kotlin
fun if_else(b: Boolean): Int {
|
|
if (b) return 42
|
|
else return 24
|
|
} |