Codebase list phpggc / b9045e78-1804-45e4-b840-1619888921db/upstream/0.20221216 phpggc
b9045e78-1804-45e4-b840-1619888921db/upstream/0.20221216

Tree @b9045e78-1804-45e4-b840-1619888921db/upstream/0.20221216 (Download .tar.gz)

phpggc @b9045e78-1804-45e4-b840-1619888921db/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);
}