Created
March 29, 2020 13:59
-
-
Save ikovalyov/7abf3e9c214436feab68337b59a9b4eb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
if (turnOnTheTeaPot) { | |
// Turning teapot on | |
teaPotService.turnOn() | |
teaPotTurnedOn = true | |
} else { | |
// Turning teapot off | |
teaPotService.turnOff() | |
teaPotTurnedOn = false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment