Codebase list phpggc / 88d9dc83-e355-4635-95d6-46f2f8ff9215/main phpggc
88d9dc83-e355-4635-95d6-46f2f8ff9215/main

Tree @88d9dc83-e355-4635-95d6-46f2f8ff9215/main (Download .tar.gz)

phpggc @88d9dc83-e355-4635-95d6-46f2f8ff9215/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);
}