Differences From Artifact [a3deb465ebfdf083]:
- 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]
 
 
To Artifact [521e3de53633ae4a]:
- File        
main.d
- 2010-11-07 10:32:59 - part of checkin [4198578702e] on branch trunk - Changed several documentation comments into ddoc compatible ones. (user: kinaba) [annotate]
 
 
    1  /*                                                                               |     1  /**
    2   * Author:  k.inaba                                                              |     2   * Authors: k.inaba
    3   * License: NYSL 0.9982 (http://www.kmonos.net/nysl/                                   3   * License: NYSL 0.9982 (http://www.kmonos.net/nysl/
                                                                                        >     4   *
    4   *   Entry point for the polemy interpreter                                      |     5   * Entry point for Polemy interpreter.
    5   */                                                                                    6   */
    6                                                                                         7  
    7  import std.stdio;                                                                      8  import std.stdio;
    8  import polemy.lex;                                                                     9  import polemy.lex;
    9  import polemy.parse;                                                                  10  import polemy.parse;
   10                                                                                        11  
   11  static ~this() { readln(); } // workaround for enabling "pause" under Poseidon        12  static ~this() { readln(); } // workaround for enabling "pause" under Poseidon
   12                                                                                        13  
   13  void main()                                                                           14  void main()
   14  {                                                                                     15  {
   15          writeln( "test ok" );                                                         16          writeln( "test ok" );
   16  }                                                                                     17  }