Codebase list phpggc / 52a96b29-e578-4d60-a8f9-a195683389b4/upstream phpggc
52a96b29-e578-4d60-a8f9-a195683389b4/upstream

Tree @52a96b29-e578-4d60-a8f9-a195683389b4/upstream (Download .tar.gz)

phpggc @52a96b29-e578-4d60-a8f9-a195683389b4/upstreamraw · 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);
}