Artifact Content
Not logged in

Artifact e01d02a22ae40e9007bf4d6f4bc4a3cd7eda1d8b


     1  /**
     2   * Authors: k.inaba
     3   * License: NYSL 0.9982 (http://www.kmonos.net/nysl/
     4   *
     5   * Entry point for Polemy interpreter.
     6   */
     7  
     8  import std.stdio;
     9  import polemy.eval;
    10  
    11  version(unittest) static ~this()
    12  {
    13  	writeln( "***********************" );
    14  	writeln( "* All Tests Passed <3 *" );
    15  	writeln( "*********************** (Press Enter to finish)" );
    16  	readln();
    17  }
    18  
    19  void main( string[] args )
    20  {
    21  }