Codebase list phpggc / fcd7d003-538b-456e-b164-a8975c4cd819/upstream phpggc
fcd7d003-538b-456e-b164-a8975c4cd819/upstream

Tree @fcd7d003-538b-456e-b164-a8975c4cd819/upstream (Download .tar.gz)

phpggc @fcd7d003-538b-456e-b164-a8975c4cd819/upstreamraw · 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);
}