Diff
Not logged in

Differences From Artifact [b0c768679677d7d5]:

To Artifact [3711e4a90323c649]:


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