Differences From Artifact [b0c768679677d7d5]:
- File
polemy/runtime.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 [3711e4a90323c649]:
- File
polemy/runtime.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 module polemy.runtime; <
2 import polemy._common; <
3 /* | 1 /**
4 * Author: k.inaba | 2 * Authors: k.inaba
5 * License: NYSL 0.9982 (http://www.kmonos.net/nysl/ | 3 * License: NYSL 0.9982 http://www.kmonos.net/nysl/
> 4 *
6 * Runtime data structures for the polemy programming language | 5 * Runtime data structures for Polemy programming language.
7 */ 6 */
> 7 module polemy.runtime;
> 8 import polemy._common;
8 9
9 class PolemyRuntimeException : Exception 10 class PolemyRuntimeException : Exception
10 { 11 {
11 this(string msg) { super(msg); } 12 this(string msg) { super(msg); }
12 } 13 }
13 14
14 abstract class Value 15 abstract class Value