Skip to content

Instantly share code, notes, and snippets.

@Jaltman429
Created June 10, 2013 21:44
Show Gist options
  • Save Jaltman429/5752646 to your computer and use it in GitHub Desktop.
Save Jaltman429/5752646 to your computer and use it in GitHub Desktop.
tempbot.rb
# Temperature bot is American but takes Celsius temperatures.
#
def temperature_bot(temp)
case temp
when temp = 18,21,22
"I like this temperature"
else
"This is uncomfortable for me"
end
end
puts temperature_bot(18)
puts temperature_bot(21)
puts temperature_bot(22)
puts temperature_bot(-3)
# temperature_bot(18)
#=> "I like this temperature"
# temperature_bot(21)
#=> "I like this temperature"
#temperature_bot(22)
#=> "This is uncomfortable for me"
#temperature_bot(-3)
#=> "This is uncomfortable for me"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment