Skip to content

Instantly share code, notes, and snippets.

Created February 27, 2015 19:50
Show Gist options
  • Save anonymous/4645f39f1c78bf9783b8 to your computer and use it in GitHub Desktop.
Save anonymous/4645f39f1c78bf9783b8 to your computer and use it in GitHub Desktop.
movies = {
"Gatsby" => 4
}
puts "What's a movie you like?"
choice = gets.chomp
case choice
when "add"
puts "What's the title?"
title = gets.chomp
if movies[title]
puts "What's the rating?"
rating = gets.chomp
movies[title] = rating
end
when "update"
puts "Updated!"
when "display"
puts "Movies!"
when "delete"
puts "Deleted!"
else
puts "Error!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment