class Greeter(name: String = “World”) {

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

}