Skip to content

Instantly share code, notes, and snippets.

@justuseapen
Created November 25, 2013 13:57
Show Gist options
  • Save justuseapen/7641556 to your computer and use it in GitHub Desktop.
Save justuseapen/7641556 to your computer and use it in GitHub Desktop.
puts "What would you like to say?"
phrase = gets.chomp
def playback(phrase)
if phrase == "Nothing!"
puts "OK, fine!"
elsif phrase == "I have a lot to say."
puts "Ain't nobody got time for that!"
else
puts "You said: #{phrase}"
end
end
playback(phrase)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment