mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
128 B
Kotlin
Vendored
8 lines
128 B
Kotlin
Vendored
fun foo(i: Int, j: Int?): String =
|
|
when (i) {
|
|
j -> "OK"
|
|
else -> "Fail"
|
|
}
|
|
|
|
fun box(): String = foo(0, 0)
|