Codebase list phpggc / 745c43e4-5f50-4c34-8814-533f4ac155d4/upstream phpggc
745c43e4-5f50-4c34-8814-533f4ac155d4/upstream

Tree @745c43e4-5f50-4c34-8814-533f4ac155d4/upstream (Download .tar.gz)

phpggc @745c43e4-5f50-4c34-8814-533f4ac155d4/upstreamraw · 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");
}