Codebase list phpggc / 095e7fc2-3758-413e-a422-b34cfdd875ca/main phpggc
095e7fc2-3758-413e-a422-b34cfdd875ca/main

Tree @095e7fc2-3758-413e-a422-b34cfdd875ca/main (Download .tar.gz)

phpggc @095e7fc2-3758-413e-a422-b34cfdd875ca/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);
}