Artifact 36044e05d28ff416b2a57785976663d230b8967c
- File        
main.d
- 2010-11-08 11:45:45 - part of checkin [b11090f441] on branch trunk - Pretty Printing of unittest success (user: kinaba) [annotate]
 
 
/**
 * 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;
	}
}