8 lines
83 B
Kotlin
8 lines
83 B
Kotlin
package foo
|
|
|
|
|
|
fun box(): Boolean {
|
|
val a: Int? = 0
|
|
|
|
return (a!! + 3) == 3
|
|
} |