mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
148 B
Kotlin
10 lines
148 B
Kotlin
fun foo(condition: Boolean): String {
|
|
val u = if (condition) {
|
|
"OK"
|
|
} else {
|
|
}
|
|
return u.toString()
|
|
}
|
|
|
|
fun box() = foo(true)
|