mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
196 B
Kotlin
Vendored
9 lines
196 B
Kotlin
Vendored
fun box(): String {
|
|
val x: Int? = 0
|
|
if (x != 0) return "Fail $x"
|
|
if (0 != x) return "Fail $x"
|
|
if (!(x == 0)) return "Fail $x"
|
|
if (!(0 == x)) return "Fail $x"
|
|
return "OK"
|
|
}
|