Codebase list phpggc / run/d238a4a0-8464-4acd-bcf0-c49e13495384/main phpggc
run/d238a4a0-8464-4acd-bcf0-c49e13495384/main

Tree @run/d238a4a0-8464-4acd-bcf0-c49e13495384/main (Download .tar.gz)

phpggc @run/d238a4a0-8464-4acd-bcf0-c49e13495384/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");
}