Artifact Content
Not logged in

Artifact 5cef40bce7835081a806a94d65d3ca11ee208a44


/**
 * 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" );
}