mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
9 lines
125 B
Kotlin
9 lines
125 B
Kotlin
val p: Int? = 1;
|
|
val z: Int? = 2;
|
|
|
|
fun box(): String {
|
|
if (!(p!! == z!!)) {
|
|
return "OK"
|
|
}
|
|
return "fail"
|
|
} |