Skip to content

Instantly share code, notes, and snippets.

@pjlowry
Created January 24, 2013 21:22
Show Gist options
  • Select an option

  • Save pjlowry/4627878 to your computer and use it in GitHub Desktop.

Select an option

Save pjlowry/4627878 to your computer and use it in GitHub Desktop.
abc menu
menu = ["a" => 10, "b" => 100, "c" => 200]
menu.each {|item, price| puts "With no discount, #{item} is #{price}."}
menu.each {|item, price| puts "With a 20% discount, #{item} is #{price * 0.8}."}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment