Codebase list phpggc / 539b61a5-de07-4976-aea7-41d49603d2ef/main phpggc
539b61a5-de07-4976-aea7-41d49603d2ef/main

Tree @539b61a5-de07-4976-aea7-41d49603d2ef/main (Download .tar.gz)

phpggc @539b61a5-de07-4976-aea7-41d49603d2ef/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");
}