Codebase list phpggc / 743ed8a0-3541-4800-a900-882571d265b1/upstream/0.20221129 phpggc
743ed8a0-3541-4800-a900-882571d265b1/upstream/0.20221129

Tree @743ed8a0-3541-4800-a900-882571d265b1/upstream/0.20221129 (Download .tar.gz)

phpggc @743ed8a0-3541-4800-a900-882571d265b1/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);
}