Codebase list phpggc / 02057006-7278-4c8b-9823-0b130bdbf456/main phpggc
02057006-7278-4c8b-9823-0b130bdbf456/main

Tree @02057006-7278-4c8b-9823-0b130bdbf456/main (Download .tar.gz)

phpggc @02057006-7278-4c8b-9823-0b130bdbf456/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");
}