Codebase list phpggc / 6d6e6a5d-2bff-4327-91a3-e70c1951cf91/upstream phpggc
6d6e6a5d-2bff-4327-91a3-e70c1951cf91/upstream

Tree @6d6e6a5d-2bff-4327-91a3-e70c1951cf91/upstream (Download .tar.gz)

phpggc @6d6e6a5d-2bff-4327-91a3-e70c1951cf91/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");
}