Skip to content

Instantly share code, notes, and snippets.

@Sihui
Created January 1, 2018 17:03
Show Gist options
  • Save Sihui/69026115b5c9c7f2a4ec5e17fce9ccc9 to your computer and use it in GitHub Desktop.
Save Sihui/69026115b5c9c7f2a4ec5e17fce9ccc9 to your computer and use it in GitHub Desktop.
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