Ruby - Control Flow
Given this Ruby code, what will be the output?
value = 0 case value in 1..5 then puts 'Positive' in -5..0 then puts 'Negative or Zero' else puts 'Unknown' end
