Artifact 521e3de53633ae4a8d24ff941932aa03a77dc90f
- File
main.d
- 2010-11-07 10:32:59 - part of checkin [4198578702e] on branch trunk - Changed several documentation comments into ddoc compatible ones. (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.lex;
import polemy.parse;
static ~this() { readln(); } // workaround for enabling "pause" under Poseidon
void main()
{
writeln( "test ok" );
}