8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
fun test(<expr>b: Boolean</expr>): Int {
|
|
val (one, two) = b to !b
|
|
return if (one && two) {
|
|
54
|
|
} else {
|
|
45
|
|
}
|
|
} |