Artifact Content
Not logged in

Artifact e7185e89f4df4ae3a2af9105534304297b3f5b2e


/**
 * Authors: k.inaba
 * License: NYSL 0.9982 (http://www.kmonos.net/nysl/
 *
 * Entry point for Polemy interpreter.
 */

import std.stdio;

version(unittest) static ~this()
{
	writeln( "***********************" );
	writeln( "* All Tests Passed <3 *" );
	writeln( "*********************** (Press Enter to finish)" );
	readln();
}

void main( string[] args )
{
}