Artifact Content
Not logged in

Artifact e01d02a22ae40e9007bf4d6f4bc4a3cd7eda1d8b


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

import std.stdio;
import polemy.eval;

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

void main( string[] args )
{
}