Codebase list phpggc / run/1ae9a113-cd65-49f0-b3b3-839348da3d1c/main phpggc
run/1ae9a113-cd65-49f0-b3b3-839348da3d1c/main

Tree @run/1ae9a113-cd65-49f0-b3b3-839348da3d1c/main (Download .tar.gz)

phpggc @run/1ae9a113-cd65-49f0-b3b3-839348da3d1c/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");
}