Artifact Content
Not logged in

Artifact 36044e05d28ff416b2a57785976663d230b8967c


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

import std.stdio;
import polemy.eval;

void main( string[] args )
{
	version(unittest)
	{
		writeln( "***********************" );
		writeln( "* All Tests Passed <3 *" );
		writeln( "*********************** (Press Enter to finish)" );
		readln();
		return;
	}
}