val sprache = "DE" val gruss = when (sprache) { "EN" -> "Hello!" "DE" -> "Tag!" else -> "Sprache unbekannt" } println(gruss)