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