Diff
Not logged in

Differences From Artifact [b0c768679677d7d5]:

To Artifact [3711e4a90323c649]:


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