aboutsummaryrefslogtreecommitdiff
path: root/source/machine.d
diff options
context:
space:
mode:
Diffstat (limited to 'source/machine.d')
-rw-r--r--source/machine.d3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/machine.d b/source/machine.d
index 6dadfd6..9565c65 100644
--- a/source/machine.d
+++ b/source/machine.d
@@ -59,7 +59,8 @@ Stack!Token evaluate(Token token) {
return token.visit!(
(int ) => Stack!Token(token),
(bool ) => Stack!Token(token),
- (string word) => definition.get(word)
+ (string word) => definition.get(word),
+ (DList!int ) => Stack!Token(token)
);
}
catch (Exception ex) {