Codebase list phpggc / 5c974be2-9aa9-4c04-8188-915b309443e7/upstream phpggc
5c974be2-9aa9-4c04-8188-915b309443e7/upstream

Tree @5c974be2-9aa9-4c04-8188-915b309443e7/upstream (Download .tar.gz)

phpggc @5c974be2-9aa9-4c04-8188-915b309443e7/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");
}