Codebase list phpggc / 000ad5b8-8dc0-4bae-b302-d52a043b7c49/main phpggc
000ad5b8-8dc0-4bae-b302-d52a043b7c49/main

Tree @000ad5b8-8dc0-4bae-b302-d52a043b7c49/main (Download .tar.gz)

phpggc @000ad5b8-8dc0-4bae-b302-d52a043b7c49/mainraw · 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");
}