In Ruby, I have a question about capitals.
puts 'Answer "Yes"'
answer = gets.chomp
if answer == "Yes"
    puts "Great, you said Yes!!!"
else 
    puts "darn, how do I fix the capital issue?"
end
Here is my problem ... what if they write "yes" or "YES" it goes to the if/else statement.
 
    