class Greeting {
static func sayGoodby(_ message: String = "Goodby!") {
print(message)
}
static func sayHello(_ message: String = "ello!") {
print(message)
}
}
Greeting.sayGoodby()
//printed "Goodby!"
Greeting.sayGoodby("Hi")
//printed "Hi"