Codebase list phpggc / ac1215ca-fdc9-4fef-b668-d6955aef4153/main phpggc
ac1215ca-fdc9-4fef-b668-d6955aef4153/main

Tree @ac1215ca-fdc9-4fef-b668-d6955aef4153/main (Download .tar.gz)

phpggc @ac1215ca-fdc9-4fef-b668-d6955aef4153/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");
}