Codebase list phpggc / e9edb64d-78cb-40d5-a4b3-25ec6c6bb270/upstream/0.20221214 phpggc
e9edb64d-78cb-40d5-a4b3-25ec6c6bb270/upstream/0.20221214

Tree @e9edb64d-78cb-40d5-a4b3-25ec6c6bb270/upstream/0.20221214 (Download .tar.gz)

phpggc @e9edb64d-78cb-40d5-a4b3-25ec6c6bb270/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);
}