module Mastermind::Console

Public Class Methods

run() click to toggle source
# File lib/mastermind/console.rb, line 3
def self.run
  controller = Controller.new
  controller.setup
  loop { controller.start_game }
end