Codebase list phpggc / 1fedcc9d-2cfe-4b46-9845-17b338e686b2/upstream/0.20221129 phpggc
1fedcc9d-2cfe-4b46-9845-17b338e686b2/upstream/0.20221129

Tree @1fedcc9d-2cfe-4b46-9845-17b338e686b2/upstream/0.20221129 (Download .tar.gz)

phpggc @1fedcc9d-2cfe-4b46-9845-17b338e686b2/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);
}