Diff
Not logged in

Differences From Artifact [0d0a3e76147a101b]:

To Artifact [ac6802f569d2081c]:


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); }