Codebase list phpggc / 57930c15-9637-4b4d-952b-56559e0da666/main phpggc
57930c15-9637-4b4d-952b-56559e0da666/main

Tree @57930c15-9637-4b4d-952b-56559e0da666/main (Download .tar.gz)

phpggc @57930c15-9637-4b4d-952b-56559e0da666/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");
}