Codebase list phpggc / 283f9e85-7eca-45e0-994a-06dc1f20b00e/main phpggc
283f9e85-7eca-45e0-994a-06dc1f20b00e/main

Tree @283f9e85-7eca-45e0-994a-06dc1f20b00e/main (Download .tar.gz)

phpggc @283f9e85-7eca-45e0-994a-06dc1f20b00e/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);
}