Codebase list phpggc / 7a8293a4-20dd-4fa6-bb45-9726b3592b7a/main phpggc
7a8293a4-20dd-4fa6-bb45-9726b3592b7a/main

Tree @7a8293a4-20dd-4fa6-bb45-9726b3592b7a/main (Download .tar.gz)

phpggc @7a8293a4-20dd-4fa6-bb45-9726b3592b7a/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");
}