Skip to content

Instantly share code, notes, and snippets.

@ashleygwilliams
Last active December 18, 2015 09:38
Show Gist options
  • Save ashleygwilliams/5762336 to your computer and use it in GitHub Desktop.
Save ashleygwilliams/5762336 to your computer and use it in GitHub Desktop.
#ITEMS = [ {"AVOCADO" => {:price => 3.00, :clearance => true}},
# {"KALE" => {:price => 3.00,:clearance => false}},
# {"BLACK_BEANS" => {:price => 2.50,:clearance => false}},
# {"ALMONDS" => {:price => 9.00, :clearance => false}},
# {"TEMPEH" => {:price => 3.00,:clearance => true}},
# {"CHEESE" => {:price => 6.50,:clearance => false}},
# {"BEER" => {:price => 13.00, :clearance => false}},
# {"PEANUTBUTTER" => {:price => 3.00,:clearance => true}},
# {"BEETS" => {:price => 2.50,:clearance => false}}]
#
###randomly generates a cart of items
#def generateCart
# cart = []
# rand(20).times do
# cart.push(ITEMS.sample)
# end
# cart
#end
#
# create a method that calculates the total cost of the items in the cart
@ashleygwilliams
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment