8 lines
86 B
Kotlin
8 lines
86 B
Kotlin
package foo
|
|
|
|
fun box() : String {
|
|
var name = "Hello"
|
|
return ("o${name}o");
|
|
}
|
|
|