Skip to content

Instantly share code, notes, and snippets.

@RonanLOUARN
Created October 4, 2016 15:42
Show Gist options
  • Save RonanLOUARN/b659ac83164ea4e7e04d95a2f7958b54 to your computer and use it in GitHub Desktop.
Save RonanLOUARN/b659ac83164ea4e7e04d95a2f7958b54 to your computer and use it in GitHub Desktop.
require_relative "coach_answer"
# TODO: Implement the program that makes you discuss with your coach from the terminal.
puts "What's your question?"
message = gets.chomp
while message != "I am going to work right now!"
puts coach_answer_enhanced(message)
puts "What's your question?"
message = gets.chomp
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment