Codebase list phpggc / d0f99a36-19f4-481c-8ea4-2ec5cea4c626/main phpggc
d0f99a36-19f4-481c-8ea4-2ec5cea4c626/main

Tree @d0f99a36-19f4-481c-8ea4-2ec5cea4c626/main (Download .tar.gz)

phpggc @d0f99a36-19f4-481c-8ea4-2ec5cea4c626/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);
}