mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
136 B
Kotlin
Vendored
9 lines
136 B
Kotlin
Vendored
fun String?.foo() = this ?: "OK"
|
|
|
|
fun foo(i: Int?): String {
|
|
if (i == null) return i.foo()
|
|
return "$i"
|
|
}
|
|
|
|
fun box() = foo(null)
|