fun wasist(obj): String = when (obj) { 1 -> "Eins" "Hallo" -> "Ein String mit dem Inhalt Hallo" is Int -> "Eine Zahl" else -> "unbekannt" }