41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
12 lines
201 B
Kotlin
12 lines
201 B
Kotlin
class Greeter(var name : String) {
|
|
fun greet() {
|
|
name = name.plus("")
|
|
System.out?.println("Hello, $name");
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
Greeter("OK").greet()
|
|
return "OK"
|
|
}
|