Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, January 14, 2013

Codecademy Sample Solution: The Case Statement



movies = {
tron: 4,
jaws: 3,
inception: 5
}

puts "Enter a choice ('add', 'update', 'display', 'delete'):"
choice = gets.chomp.downcase
#puts choice
case choice
when 'add'
puts "Added!"
when 'update'
puts "Updated!"
when 'display'
puts "Movies!"
when 'delete'
puts "Deleted!"
else
puts "Error!"
end

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts