Codebase list phpggc / run/386c5bd4-2045-4c8c-8198-20a70c5835e4/main phpggc
run/386c5bd4-2045-4c8c-8198-20a70c5835e4/main

Tree @run/386c5bd4-2045-4c8c-8198-20a70c5835e4/main (Download .tar.gz)

phpggc @run/386c5bd4-2045-4c8c-8198-20a70c5835e4/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");
}