Codebase list phpggc / 8ea3583c-1013-43eb-9731-f307e61b3fa2/main phpggc
8ea3583c-1013-43eb-9731-f307e61b3fa2/main

Tree @8ea3583c-1013-43eb-9731-f307e61b3fa2/main (Download .tar.gz)

phpggc @8ea3583c-1013-43eb-9731-f307e61b3fa2/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");
}