Codebase list phpggc / 9b90dfab-c114-4efc-b45b-67ab20d64601/upstream phpggc
9b90dfab-c114-4efc-b45b-67ab20d64601/upstream

Tree @9b90dfab-c114-4efc-b45b-67ab20d64601/upstream (Download .tar.gz)

phpggc @9b90dfab-c114-4efc-b45b-67ab20d64601/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");
}