Question 1/12: This extension correctly implements a method from its protocol – true or false?
Hint: Click to show.
protocol DogTrainer {
func train(dog: String) {
print("We'll make \(dog) behave in no time!")
}
}
Link copied to your pasteboard.