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