Classe Swift Conform to Swift Protocol
// conform class to Greet protocol
class Employee: Greet {
// implementation of property
var name = "Perry"
// implementation of method
func message() {
print("Good Morning!")
}
}
SAMER SAEID