Codebase list phpggc / 4dd69180-5931-4a8b-ba67-c6eb16b8de20/main phpggc
4dd69180-5931-4a8b-ba67-c6eb16b8de20/main

Tree @4dd69180-5931-4a8b-ba67-c6eb16b8de20/main (Download .tar.gz)

phpggc @4dd69180-5931-4a8b-ba67-c6eb16b8de20/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");
    exit(1);
}