Codebase list phpggc / afdd17c6-41cb-4f7f-a6f2-9a7742225e47/upstream/0.20221219 phpggc
afdd17c6-41cb-4f7f-a6f2-9a7742225e47/upstream/0.20221219

Tree @afdd17c6-41cb-4f7f-a6f2-9a7742225e47/upstream/0.20221219 (Download .tar.gz)

phpggc @afdd17c6-41cb-4f7f-a6f2-9a7742225e47/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);
}