Codebase list phpggc / e380c6ec-c3ad-4779-9030-d4465effed29/main phpggc
e380c6ec-c3ad-4779-9030-d4465effed29/main

Tree @e380c6ec-c3ad-4779-9030-d4465effed29/main (Download .tar.gz)

phpggc @e380c6ec-c3ad-4779-9030-d4465effed29/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");
}