Codebase list phpggc / 9c95f147-77a1-4070-b868-f8d9f126e1ad/main phpggc
9c95f147-77a1-4070-b868-f8d9f126e1ad/main

Tree @9c95f147-77a1-4070-b868-f8d9f126e1ad/main (Download .tar.gz)

phpggc @9c95f147-77a1-4070-b868-f8d9f126e1ad/mainraw · 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");
}