Codebase list phpggc / ba979ab6-6e2f-49a9-921a-c14d769b9043/upstream/0.20221214 phpggc
ba979ab6-6e2f-49a9-921a-c14d769b9043/upstream/0.20221214

Tree @ba979ab6-6e2f-49a9-921a-c14d769b9043/upstream/0.20221214 (Download .tar.gz)

phpggc @ba979ab6-6e2f-49a9-921a-c14d769b9043/upstream/0.20221214raw · 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);
}