Codebase list phpggc / 1ae9a113-cd65-49f0-b3b3-839348da3d1c/upstream/0.20221129 phpggc
1ae9a113-cd65-49f0-b3b3-839348da3d1c/upstream/0.20221129

Tree @1ae9a113-cd65-49f0-b3b3-839348da3d1c/upstream/0.20221129 (Download .tar.gz)

phpggc @1ae9a113-cd65-49f0-b3b3-839348da3d1c/upstream/0.20221129raw · 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);
}