mikrobak
val map = mapOf("foo" to 1, "bar" to null) val x = map.getOrElse("bar") { throw Exception() } // throws Exception
x