Created
February 3, 2023 17:09
-
-
Save muhamedoufi/ea13c1d47906ce8bf033a1bb280276eb to your computer and use it in GitHub Desktop.
Pizza cration using Factory Method
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
interface Pizza { | |
void prepare(); | |
void bake(); | |
void cut(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment