7 lines
84 B
Kotlin
Vendored
7 lines
84 B
Kotlin
Vendored
fun test1(b: Boolean) {
|
|
b && return
|
|
}
|
|
|
|
fun test2(b: Boolean) {
|
|
b || return
|
|
} |