Codebase list phpggc / f9ba0500-a005-41dc-aff0-9139aa6a4034/upstream phpggc
f9ba0500-a005-41dc-aff0-9139aa6a4034/upstream

Tree @f9ba0500-a005-41dc-aff0-9139aa6a4034/upstream (Download .tar.gz)

phpggc @f9ba0500-a005-41dc-aff0-9139aa6a4034/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);
}