#!/usr/bin/env php
<?php

use BrainGames\Cli;
use BrainGames\EvenGame;

if (file_exists(dirname(__FILE__) . '/../vendor/autoload.php')) {
    require_once dirname(__FILE__) . '/../vendor/autoload.php';
}

(new Cli())->run(new EvenGame());