6 lines
88 B
Kotlin
6 lines
88 B
Kotlin
fun f(x: Any): Int {
|
|
return when (x) {
|
|
is Int -> 1
|
|
else -> 0
|
|
}
|
|
} |