Created
August 6, 2014 19:27
-
-
Save jshawl/32085d213a9e7e88ddf0 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
puts "weclome! please choose 1 or 2." | |
choice = gets.chomp | |
if choice == "1" | |
puts "thanks! :) you chose 1" | |
elsif choice == "2" | |
puts "thanks! you chose 2" | |
else | |
puts "you didn't follow the rules" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment