Codebase list phpggc / a0a0786e-a75f-4ad5-92bc-c509da21f8bf/upstream/0.20221114 phpggc
a0a0786e-a75f-4ad5-92bc-c509da21f8bf/upstream/0.20221114

Tree @a0a0786e-a75f-4ad5-92bc-c509da21f8bf/upstream/0.20221114 (Download .tar.gz)

phpggc @a0a0786e-a75f-4ad5-92bc-c509da21f8bf/upstream/0.20221114raw · 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);
}