Codebase list phpggc / da5526a4-b6aa-4254-a4be-c51fd5a5f07e/main phpggc
da5526a4-b6aa-4254-a4be-c51fd5a5f07e/main

Tree @da5526a4-b6aa-4254-a4be-c51fd5a5f07e/main (Download .tar.gz)

phpggc @da5526a4-b6aa-4254-a4be-c51fd5a5f07e/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");
}