Codebase list phpggc / d205dbc9-c4d2-4ca1-9c07-ce7987449cc2/upstream phpggc
d205dbc9-c4d2-4ca1-9c07-ce7987449cc2/upstream

Tree @d205dbc9-c4d2-4ca1-9c07-ce7987449cc2/upstream (Download .tar.gz)

phpggc @d205dbc9-c4d2-4ca1-9c07-ce7987449cc2/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");
}