6 lines
92 B
Kotlin
Vendored
6 lines
92 B
Kotlin
Vendored
fun foo(b: Boolean) {
|
|
if (b)
|
|
println("true")
|
|
else
|
|
println("false")
|
|
} |