1#!/usr/bin/env ruby 2$:.unshift('lib') 3require 'gol' 4 5max_x = 10 6max_y = 10 7Game.new(Printer.new(max_x)).play(max_x, max_y)