blob: e87965a0fc8ca4bbe2858e39df247e3f7df774cd [file]
fun isString(x: Any) = when(x) {
is String -> "string"
else -> "something"
}