Codebase list phpggc / 61b5b206-c125-4dbe-9db8-a9e81d3d92bd/main phpggc
61b5b206-c125-4dbe-9db8-a9e81d3d92bd/main

Tree @61b5b206-c125-4dbe-9db8-a9e81d3d92bd/main (Download .tar.gz)

phpggc @61b5b206-c125-4dbe-9db8-a9e81d3d92bd/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");
}