Codebase list phpggc / d8342ae9-f3ef-438b-85ac-1b17f8df47e2/upstream/0.20221216 phpggc
d8342ae9-f3ef-438b-85ac-1b17f8df47e2/upstream/0.20221216

Tree @d8342ae9-f3ef-438b-85ac-1b17f8df47e2/upstream/0.20221216 (Download .tar.gz)

phpggc @d8342ae9-f3ef-438b-85ac-1b17f8df47e2/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);
}