Skip to content

Instantly share code, notes, and snippets.

@0x0dea

0x0dea/nawn.rb Secret

Created September 1, 2015 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x0dea/362a64f9c22c701759a2 to your computer and use it in GitHub Desktop.
Save 0x0dea/362a64f9c22c701759a2 to your computer and use it in GitHub Desktop.
byes = 0
puts 'What was that, honey?'
until byes == 3
if (last = gets.chomp).upcase!
puts 'HUH!? SPEAK UP, SONNY!'
byes += last == 'BYE' ? 1 : -byes
else
puts "NO, NOT SINCE 19#{rand 20..50}!"
byes = 0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment