Created
July 15, 2015 16:24
-
-
Save margieI/e06536f3602d471d577d to your computer and use it in GitHub Desktop.
This file contains 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
def greeting | |
if 5 + 5 == 10 | |
puts "this is true" | |
else | |
puts "this is false" | |
end | |
end | |
greeting |
This file contains 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
def choose | |
puts "Do you like programming? Yes, no, or maybe please." | |
choice = gets.chomp | |
case choice.downcase | |
when "yes" | |
puts "That's great!" | |
when "no" | |
puts "That's too bad!" | |
when "maybe" | |
puts "Glad you are giving it a chance!" | |
else | |
puts "I have no idea what that means." | |
end | |
end | |
choose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment