Artifact a3deb465ebfdf083be8296c5e1a8dc390acafb23
- File
main.d
- 2010-11-07 10:18:02 - part of checkin [423f308350] on branch trunk - Initial commit. Just for setting up the environment. (user: kinaba) [annotate]
/* * Author: k.inaba * License: NYSL 0.9982 (http://www.kmonos.net/nysl/ * Entry point for the 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" ); }