9 lines
77 B
Kotlin
9 lines
77 B
Kotlin
package foo
|
|
|
|
fun box(): Boolean {
|
|
|
|
val a = "String";
|
|
return true;
|
|
}
|
|
|