Codebase list phpggc / 462ae83d-b42a-44af-9c0d-0b66b447cd18/main phpggc
462ae83d-b42a-44af-9c0d-0b66b447cd18/main

Tree @462ae83d-b42a-44af-9c0d-0b66b447cd18/main (Download .tar.gz)

phpggc @462ae83d-b42a-44af-9c0d-0b66b447cd18/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);
}