class Greeter(name: String = β€œWorld”) {

def sayHi() { println("Hi " + name + "!") }

}