Artifact Content
Not logged in

Artifact 404b54e69646e17a376135abd31e2d8af60a77e8


     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  
    10  version(unittest) static ~this()
    11  {
    12  	writeln( "(Press Enter to finish)" );
    13  	readln();
    14  }
    15  
    16  void main( string[] args )
    17  {
    18  }