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

use function BrainGames\games\calc\startCalcGame;

$autoloadPath1 = __DIR__ . '/../vendor/autoload.php';
$autoloadPath2 = __DIR__ . '/../../../autoload.php';
if (file_exists($autoloadPath1)) {
    require $autoloadPath1;
} else {
    require $autoloadPath2;
}

startCalcGame();
