Codebase list phpggc / a11d8c92-c256-46e9-a890-34f4f1737135/main phpggc
a11d8c92-c256-46e9-a890-34f4f1737135/main

Tree @a11d8c92-c256-46e9-a890-34f4f1737135/main (Download .tar.gz)

phpggc @a11d8c92-c256-46e9-a890-34f4f1737135/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");
}