Artifact 5cef40bce7835081a806a94d65d3ca11ee208a44
- File
main.d
- 2010-11-07 15:03:38 - part of checkin [820e7198cc] on branch trunk - Made helloworld work. (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;
version(unittest)
static ~this() { readln(); } // workaround for enabling "pause" under Poseidon
void main()
{
writeln( "test ok" );
}