4 lines
88 B
Plaintext
4 lines
88 B
Plaintext
class Greeter(name: String = "World") {
|
|
def sayHi() { println("Hi " + name + "!") }
|
|
}
|