In support to blog post https://codewithshabib.com/2017/02/05/introduction-to-strategy-pattern/
protocol Flyable { | |
func flyOnAir() | |
} | |
class SmartFlyingCar: SmartCar, Flyable { | |
func flyOnAir() { | |
print("Wohoo! I am flying high!") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment