Files
kotlin/compiler/testData/codegen/patternMatching/constant.kt
2013-01-24 21:12:27 +04:00

5 lines
61 B
Kotlin

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