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