Codebase list phpggc / 77d935db-9c6b-403c-a4a7-7f5a907f1fdf/upstream/0.20221219 phpggc
77d935db-9c6b-403c-a4a7-7f5a907f1fdf/upstream/0.20221219

Tree @77d935db-9c6b-403c-a4a7-7f5a907f1fdf/upstream/0.20221219 (Download .tar.gz)

phpggc @77d935db-9c6b-403c-a4a7-7f5a907f1fdf/upstream/0.20221219raw · 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);
}