Codebase list phpggc / run/4b5e3b15-5f04-47e4-945a-bf89acbbaef4/main phpggc
run/4b5e3b15-5f04-47e4-945a-bf89acbbaef4/main

Tree @run/4b5e3b15-5f04-47e4-945a-bf89acbbaef4/main (Download .tar.gz)

phpggc @run/4b5e3b15-5f04-47e4-945a-bf89acbbaef4/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");
}