Codebase list phpggc / run/a893f31e-73bd-45e2-9406-c80e9ba55412/main phpggc
run/a893f31e-73bd-45e2-9406-c80e9ba55412/main

Tree @run/a893f31e-73bd-45e2-9406-c80e9ba55412/main (Download .tar.gz)

phpggc @run/a893f31e-73bd-45e2-9406-c80e9ba55412/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");
}