module ConnectFourCli
Constants
- VERSION
Public Class Methods
start()
click to toggle source
# File lib/connect_four_cli.rb, line 9 def self.start if ARGV[0] == "--two" || ARGV[0] == "-2" game = Game.new(6) else game = Game.new(6, true) end Renderer.start(game) end