Created
January 1, 2018 17:03
-
-
Save Sihui/69026115b5c9c7f2a4ec5e17fce9ccc9 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 OreoCheesecake | |
def make_crust | |
puts 'making OreoCheesecake curst' | |
end | |
def add_layers | |
puts 'making OreoCheesecake layers' | |
end | |
def bake | |
puts 'baking OreoCheesecake' | |
end | |
def refrigerate | |
puts 'refrigerating OreoCheesecake' | |
end | |
def add_toppings | |
puts 'add toppings to OreoCheesecake' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment