Codebase list phpggc / run/71209c82-3e1d-4a12-bc03-fda43bcc161f/main phpggc
run/71209c82-3e1d-4a12-bc03-fda43bcc161f/main

Tree @run/71209c82-3e1d-4a12-bc03-fda43bcc161f/main (Download .tar.gz)

phpggc @run/71209c82-3e1d-4a12-bc03-fda43bcc161f/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");
}