Codebase list phpggc / run/f2d7537f-1b83-4af6-b066-9f4c518ff9e4/main phpggc
run/f2d7537f-1b83-4af6-b066-9f4c518ff9e4/main

Tree @run/f2d7537f-1b83-4af6-b066-9f4c518ff9e4/main (Download .tar.gz)

phpggc @run/f2d7537f-1b83-4af6-b066-9f4c518ff9e4/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");
}