Codebase list phpggc / 31bd5560-3bca-4ff5-b730-24ee40ea792c/main phpggc
31bd5560-3bca-4ff5-b730-24ee40ea792c/main

Tree @31bd5560-3bca-4ff5-b730-24ee40ea792c/main (Download .tar.gz)

phpggc @31bd5560-3bca-4ff5-b730-24ee40ea792c/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");
}