Codebase list phpggc / 1f9395ad-b26a-41f0-b72f-88c3e0211812/main phpggc
1f9395ad-b26a-41f0-b72f-88c3e0211812/main

Tree @1f9395ad-b26a-41f0-b72f-88c3e0211812/main (Download .tar.gz)

phpggc @1f9395ad-b26a-41f0-b72f-88c3e0211812/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");
}