Codebase list phpggc / 763cc354-c096-4273-aa4e-9480cc2ebc3a/main phpggc
763cc354-c096-4273-aa4e-9480cc2ebc3a/main

Tree @763cc354-c096-4273-aa4e-9480cc2ebc3a/main (Download .tar.gz)

phpggc @763cc354-c096-4273-aa4e-9480cc2ebc3a/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");
}