Codebase list phpggc / b4716238-10c7-4280-9858-21be38fe1290/main phpggc
b4716238-10c7-4280-9858-21be38fe1290/main

Tree @b4716238-10c7-4280-9858-21be38fe1290/main (Download .tar.gz)

phpggc @b4716238-10c7-4280-9858-21be38fe1290/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");
}