Last active
December 18, 2015 09:38
-
-
Save ashleygwilliams/5762336 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
#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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/ashleygwilliams/5757256