Created
June 10, 2013 22:13
-
-
Save joegiralt/5752880 to your computer and use it in GitHub Desktop.
tempaturebot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Temperature bot is American but takes Celsius temperatures. | |
# | |
def temperature_bot(temp) | |
case temp | |
when temp <= 21 && 18 <= temp | |
"I like this temperature" | |
else | |
"This is uncomfortable for me" | |
end | |
end | |
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