Codebase list phpggc / 0eb85135-81d4-4b5d-a9c5-bb2817df23fc/main phpggc
0eb85135-81d4-4b5d-a9c5-bb2817df23fc/main

Tree @0eb85135-81d4-4b5d-a9c5-bb2817df23fc/main (Download .tar.gz)

phpggc @0eb85135-81d4-4b5d-a9c5-bb2817df23fc/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");
}