weeks1to2/Example/temp.rb
2017-08-14 11:34:33 +10:00

8 lines
128 B
Ruby

puts "how hot is it?"
random = gets.chomp.to_i
if random <= 20
puts "wear shorts!"
else random > 20
puts "wear pants!"
end