#!/usr/bin/env php
<?php
$autoload = __DIR__ . '/../vendor/autoload.php';
if (!file_exists($autoload)) {
    echo "Please run `php composer.phar install` first." . PHP_EOL;
    exit(1);
}
require_once $autoload;

use Cilex\Compiler;

$compiler = new Compiler();
$compiler->compile();
