Methods with optional parameter values in Swift

func sayGoodby(message: String = "Goodby!") {
    print(message)
}

sayGoodby()
//prints "Goodby!"

sayGoodby("see you")
//prints "see you"