Codebase list phpggc / run/e5ffabb7-b00c-4513-b9b2-50dfb4063c97/main phpggc
run/e5ffabb7-b00c-4513-b9b2-50dfb4063c97/main

Tree @run/e5ffabb7-b00c-4513-b9b2-50dfb4063c97/main (Download .tar.gz)

phpggc @run/e5ffabb7-b00c-4513-b9b2-50dfb4063c97/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");
}