Codebase list phpggc / 65a13ee1-61f3-4423-84ce-74f33190a8e8/main phpggc
65a13ee1-61f3-4423-84ce-74f33190a8e8/main

Tree @65a13ee1-61f3-4423-84ce-74f33190a8e8/main (Download .tar.gz)

phpggc @65a13ee1-61f3-4423-84ce-74f33190a8e8/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");
}