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