8 lines
90 B
Kotlin
8 lines
90 B
Kotlin
package foo
|
|
|
|
fun box() : String {
|
|
var number = 3
|
|
return ("my age is $number");
|
|
}
|
|
|