Last active
February 5, 2017 17:06
-
-
Save shabib87/5946bc75723572ece692f1df2ea84be1 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 SmartBoat: SmartVehicle, RoadDrivable, WaterDrivable { | |
func driveOnRoad() { | |
print("Vroom!") | |
} | |
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