Last active
November 13, 2019 16:15
-
-
Save AlexPinhasov/1129846ef49607a243f9b3be6758dfff to your computer and use it in GitHub Desktop.
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 Car: Vehical { | |
// *Old* code Represented as the "False" state of the toggle | |
func drive(to geoLocation: Position) { | |
} | |
// *New* code Represented as the "True" state of the toggle | |
func fly(to geoLocation: Position) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment