blob: 2c98ded9809a4754f1f7718097c606c2dd8617b7 [file]
fun isZero(x: Int) = when(x) {
0 -> true
else -> throw Exception()
}