android kotlin comparing block of code code example
Example 1: when kotlin
when (x) {
1 -> print("x == 1")
2 -> print("x == 2")
else -> { // Note the block
print("x is neither 1 nor 2")
}
}
Example 2: kotlin if
if (a > b) {
max = a
} else {
max = b
}