so not to sure where im going wrong here ive followed all the instructions down to the letter, including capitals exclamation marks i have no idea whats going wrong, when prompted for my input i type “display” to simply display my movie, im probably making a silly mistake any help would be greatly appreciated, heres my code
movies = {
click: 4
}
puts “What would you like to do?”
puts “-- Type ‘add’ to add a movie.”
puts “-- Type ‘update’ to update a movie.”
puts “-- Type ‘display’ to display all movies.”
puts “-- Type ‘delete’ to delete a movie.”
choice = gets.chomp
case choice
when “add”
puts “Added!”
when “update”
puts “Updated!”
when “display”
puts “Movies!”
when “delete”
puts “Deleted!”
else
puts “Error!”
end
ive also tried putting “end” twice as i noticed some exercises require that (Not to sure why as no explanation has been given)