Codebase list phpggc / 1cc5ab55-0cbf-4958-a56a-ccdefc62a3f8/main phpggc
1cc5ab55-0cbf-4958-a56a-ccdefc62a3f8/main

Tree @1cc5ab55-0cbf-4958-a56a-ccdefc62a3f8/main (Download .tar.gz)

phpggc @1cc5ab55-0cbf-4958-a56a-ccdefc62a3f8/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");
}