Ruby - Control Flow
What will be the output of this Ruby code?
score = 85 case score when 90..100 puts 'Excellent' when 75..89 puts 'Good' else puts 'Needs Improvement' end
