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