Codebase list phpggc / 30764c1f-a285-4f83-95c9-bb6dc5bcaa7b/main phpggc
30764c1f-a285-4f83-95c9-bb6dc5bcaa7b/main

Tree @30764c1f-a285-4f83-95c9-bb6dc5bcaa7b/main (Download .tar.gz)

phpggc @30764c1f-a285-4f83-95c9-bb6dc5bcaa7b/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");
    exit(1);
}