class Billy::Goat

Public Instance Methods

brain() click to toggle source
# File lib/billygoat/goat.rb, line 5
def brain
  @brain ||= Brain.new
end
execute(*args) click to toggle source
# File lib/billygoat/goat.rb, line 9
def execute(*args)
  args.shift if brain.recall(args.first)

  brain.execute(*args)
end