Codebase list phpggc / 97ab1e0d-89e7-4f3c-b5d4-916bfe897ee5/main phpggc
97ab1e0d-89e7-4f3c-b5d4-916bfe897ee5/main

Tree @97ab1e0d-89e7-4f3c-b5d4-916bfe897ee5/main (Download .tar.gz)

phpggc @97ab1e0d-89e7-4f3c-b5d4-916bfe897ee5/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");
}