class Seiji::Response

Public Instance Methods

call() click to toggle source
# File lib/seiji.rb, line 6
def call
  puts "Hi, I'm Seiji. Ask me a 'yes or no' question about code, and I'll try to help you out! Type 'exit' to quit."
  loop do
    question = gets.strip
    break if question == 'exit'
    puts "Well...kind of..."
  end
end