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