Codebase list phpggc / d0013ff7-aabc-4a8d-b2cc-64e0453c8a52/main phpggc
d0013ff7-aabc-4a8d-b2cc-64e0453c8a52/main

Tree @d0013ff7-aabc-4a8d-b2cc-64e0453c8a52/main (Download .tar.gz)

phpggc @d0013ff7-aabc-4a8d-b2cc-64e0453c8a52/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");
    exit(1);
}