Differences From Artifact [0d0a3e76147a101b]:
- File
polemy/runtime.d
- 2010-11-07 16:31:52 - part of checkin [633e700889] on branch trunk - If-expression implemented. Factorial now works. (user: kinaba) [annotate]
To Artifact [ac6802f569d2081c]:
- File
polemy/value.d
- 2010-11-08 08:01:27 - part of checkin [b0d8d7875b] on branch trunk - polemy.runtime renamed into polemy.value. Also, in process of changes to use unittest helpers. (user: kinaba) [annotate]
1 1 /**
2 2 * Authors: k.inaba
3 3 * License: NYSL 0.9982 http://www.kmonos.net/nysl/
4 4 *
5 5 * Runtime data structures for Polemy programming language.
6 6 */
7 -module polemy.runtime;
7 +module polemy.value;
8 8 import polemy._common;
9 9 import polemy.lex : LexPosition;
10 10 import std.stdio;
11 11
12 12 class PolemyRuntimeException : Exception
13 13 {
14 14 this(string msg) { super(msg); }