5 lines
81 B
Plaintext
5 lines
81 B
Plaintext
fun isString(x: Any) = when(x) {
|
|
is String -> "string"
|
|
else -> "something"
|
|
}
|