Codebase list phpggc / 3b92278d-51f4-416a-b547-1e1fe3d6b9cb/upstream/0.20221216 phpggc
3b92278d-51f4-416a-b547-1e1fe3d6b9cb/upstream/0.20221216

Tree @3b92278d-51f4-416a-b547-1e1fe3d6b9cb/upstream/0.20221216 (Download .tar.gz)

phpggc @3b92278d-51f4-416a-b547-1e1fe3d6b9cb/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);
}