Differences From Artifact [e01d02a22ae40e90]:
- File
main.d
- 2010-11-08 11:57:48 - part of checkin [077506b38c] on branch trunk - Generic toString utility added. (user: kinaba) [annotate]
To 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]
2 2 * Authors: k.inaba
3 3 * License: NYSL 0.9982 (http://www.kmonos.net/nysl/
4 4 *
5 5 * Entry point for Polemy interpreter.
6 6 */
7 7
8 8 import std.stdio;
9 -import polemy.eval;
10 9
11 10 version(unittest) static ~this()
12 11 {
13 12 writeln( "***********************" );
14 13 writeln( "* All Tests Passed <3 *" );
15 14 writeln( "*********************** (Press Enter to finish)" );
16 15 readln();
17 16 }
18 17
19 18 void main( string[] args )
20 19 {
21 20 }