6 lines
90 B
Kotlin
Vendored
6 lines
90 B
Kotlin
Vendored
package foo
|
|
|
|
fun box(): Boolean {
|
|
val a = 2;
|
|
return if (a == 2) true else false;
|
|
} |