Codebase list phpggc / c4926415-94b7-4953-b4f6-d3da72a9d898/upstream phpggc
c4926415-94b7-4953-b4f6-d3da72a9d898/upstream

Tree @c4926415-94b7-4953-b4f6-d3da72a9d898/upstream (Download .tar.gz)

phpggc @c4926415-94b7-4953-b4f6-d3da72a9d898/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");
}