Codebase list phpggc / 6750899b-896c-4ff8-9c40-659ee2e55989/upstream/0.20221216 phpggc
6750899b-896c-4ff8-9c40-659ee2e55989/upstream/0.20221216

Tree @6750899b-896c-4ff8-9c40-659ee2e55989/upstream/0.20221216 (Download .tar.gz)

phpggc @6750899b-896c-4ff8-9c40-659ee2e55989/upstream/0.20221216raw · 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");
    exit(1);
}