Codebase list phpggc / 7a36ef33-d1fa-4f38-a466-56b83bc137c1/main phpggc
7a36ef33-d1fa-4f38-a466-56b83bc137c1/main

Tree @7a36ef33-d1fa-4f38-a466-56b83bc137c1/main (Download .tar.gz)

phpggc @7a36ef33-d1fa-4f38-a466-56b83bc137c1/mainraw · history · blame

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

error_reporting(E_ALL);

require_once('lib/PHPGGC.php');

$x = new PHPGGC();

try
{
    $x->generate();
}
catch(\PHPGGC\Exception $e)
{
    print("ERROR: " . $e->getMessage() . "\n");
    exit(1);
}