Artifact e7185e89f4df4ae3a2af9105534304297b3f5b2e
- File
main.d
- 2010-11-08 14:59:30 - part of checkin [b985f3bf91] on branch trunk - refactored parser to change AST to ML-like one. (user: kinaba) [annotate]
/**
* 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 )
{
}