Last active
January 11, 2021 19:42
-
-
Save petrosDemetrakopoulos/4a17d53b029818a852b34349541eccc2 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
var napolitana = Pizza(id: 0, size: 8, type: .napolitana, doughType: .thin) | |
print(napolitana.currentState) | |
napolitana.bakePizza() | |
print(napolitana.currentState) | |
napolitana.deliverPizza() | |
print(napolitana.currentState) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment