Codebase list phpggc / 74eac964-d2a8-4c8f-b80e-7570a6439881/main phpggc
74eac964-d2a8-4c8f-b80e-7570a6439881/main

Tree @74eac964-d2a8-4c8f-b80e-7570a6439881/main (Download .tar.gz)

phpggc @74eac964-d2a8-4c8f-b80e-7570a6439881/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");
}