Codebase list phpggc / run/c24f85c8-9ea1-45a6-842d-fd4b411e8898/main phpggc
run/c24f85c8-9ea1-45a6-842d-fd4b411e8898/main

Tree @run/c24f85c8-9ea1-45a6-842d-fd4b411e8898/main (Download .tar.gz)

phpggc @run/c24f85c8-9ea1-45a6-842d-fd4b411e8898/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");
}