Codebase list phpggc / run/da7cb869-f7ab-426d-9fa9-d9257ea439af/main phpggc
run/da7cb869-f7ab-426d-9fa9-d9257ea439af/main

Tree @run/da7cb869-f7ab-426d-9fa9-d9257ea439af/main (Download .tar.gz)

phpggc @run/da7cb869-f7ab-426d-9fa9-d9257ea439af/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");
}