Codebase list phpggc / 29b5f973-d84c-4711-973b-5acf9a55d143/main phpggc
29b5f973-d84c-4711-973b-5acf9a55d143/main

Tree @29b5f973-d84c-4711-973b-5acf9a55d143/main (Download .tar.gz)

phpggc @29b5f973-d84c-4711-973b-5acf9a55d143/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");
}