Codebase list phpggc / d1e67a3f-0655-476f-9447-c3765d0cb29f/upstream phpggc
d1e67a3f-0655-476f-9447-c3765d0cb29f/upstream

Tree @d1e67a3f-0655-476f-9447-c3765d0cb29f/upstream (Download .tar.gz)

phpggc @d1e67a3f-0655-476f-9447-c3765d0cb29f/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");
}