Codebase list phpggc / 3c9339e1-8d15-403d-80d0-c710ce6d6028/main phpggc
3c9339e1-8d15-403d-80d0-c710ce6d6028/main

Tree @3c9339e1-8d15-403d-80d0-c710ce6d6028/main (Download .tar.gz)

phpggc @3c9339e1-8d15-403d-80d0-c710ce6d6028/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");
}