Skip to content

Instantly share code, notes, and snippets.

@benjaminoakes
Created May 21, 2017 12:08
Show Gist options
  • Save benjaminoakes/e35ca01594befbf8ecb5d57771735058 to your computer and use it in GitHub Desktop.
Save benjaminoakes/e35ca01594befbf8ecb5d57771735058 to your computer and use it in GitHub Desktop.
loop do
print 'Listening... '
utterance = gets
command = utterance.strip.sub(/\.$/, '').downcase.split(/\s+/).first
case command
when 'say'
puts utterance.sub(/^say/i, '')
when 'exit', 'quit'
puts "Exiting..."
exit
else
puts "Command not understood: #{command}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment