Last active
February 5, 2017 17:07
-
-
Save shabib87/e489cf3ed8eb4d28fbf9cbe4da6cb39d to your computer and use it in GitHub Desktop.
In support to blog post https://codewithshabib.com/2017/02/05/introduction-to-strategy-pattern/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SuperSmartCar: SmartCar { | |
func driveOnWater() { | |
print("I can run over water, because I can! B-)") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment