fun isZero(x: Int) = when(x) { 0 -> true else -> throw Exception() }