Artifact Content
Not logged in

Artifact 521e3de53633ae4a8d24ff941932aa03a77dc90f


     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.lex;
    10  import polemy.parse;
    11  
    12  static ~this() { readln(); } // workaround for enabling "pause" under Poseidon
    13  
    14  void main()
    15  {
    16  	writeln( "test ok" );
    17  }