Codebase list phpggc / run/376f62d1-e066-4dce-8d3b-74354b5c0ca7/main phpggc
run/376f62d1-e066-4dce-8d3b-74354b5c0ca7/main

Tree @run/376f62d1-e066-4dce-8d3b-74354b5c0ca7/main (Download .tar.gz)

phpggc @run/376f62d1-e066-4dce-8d3b-74354b5c0ca7/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");
}