Codebase list phpggc / f81df7ea-b4b2-4f1b-a2f8-5e61af903385/main phpggc
f81df7ea-b4b2-4f1b-a2f8-5e61af903385/main

Tree @f81df7ea-b4b2-4f1b-a2f8-5e61af903385/main (Download .tar.gz)

phpggc @f81df7ea-b4b2-4f1b-a2f8-5e61af903385/main

16028c9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cf7e7ef
16028c9
#!/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);
}