This file contains hidden or 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
favorite_movies = [ | |
{ title: 'The Big Lebowski', year_released: 1998, director: 'Joel Coen', imdb_rating: 8.2 }, | |
{ title: 'The Shining', year_released: 1980, director: 'Stanley Kubrick', imdb_rating: 8.5 }, | |
{ title: 'Troll 2', year_released: 1990, directory: 'Claudio Fragasso', imdb_rating: 2.5 } | |
] | |
favorite_movies.each do |element| | |
puts "#{element[:year_released]}: #{element[:title]}" | |
This file contains hidden or 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
input = "beep" | |
subtotal_items = [] | |
cash = 0 | |
time = Time.now | |
#puts "Please enter the amount due: " | |
#price = gets.chomp.to_f | |
while input.downcase != "done" |
This file contains hidden or 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
price = 0 | |
cash = 0 | |
time = Time.now | |
puts "Please enter the amount due: " | |
price = gets.chomp.to_f | |
puts "Please enter the cash tendered: " | |
cash = gets.chomp.to_f |
NewerOlder