Differences From Artifact [e7185e89f4df4ae3]:
- File        
main.d
- 2010-11-08 14:59:30 - part of checkin [b985f3bf91] on branch trunk - refactored parser to change AST to ML-like one. (user: kinaba) [annotate]
 
 
To Artifact [404b54e69646e17a]:
- File        
main.d
- 2010-11-08 16:40:55 - part of checkin [aa770610d3] on branch trunk - added layered-let (user: kinaba) [annotate]
 
 
    5   * Entry point for Polemy interpreter.                                                 5   * Entry point for Polemy interpreter.
    6   */                                                                                    6   */
    7                                                                                         7  
    8  import std.stdio;                                                                      8  import std.stdio;
    9                                                                                         9  
   10  version(unittest) static ~this()                                                      10  version(unittest) static ~this()
   11  {                                                                                     11  {
   12          writeln( "***********************" );                                    <
   13          writeln( "* All Tests Passed <3 *" );                                    <
   14          writeln( "*********************** (Press Enter to finish)" );            |    12          writeln( "(Press Enter to finish)" );
   15          readln();                                                                     13          readln();
   16  }                                                                                     14  }
   17                                                                                        15  
   18  void main( string[] args )                                                            16  void main( string[] args )
   19  {                                                                                     17  {
   20  }                                                                                     18  }