From 8b7ac38c8a12687a4c1a440f93a61491230ba9af Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Feb 2023 11:16:38 -0500 Subject: [PATCH] fix const --- parser.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parser.hpp b/parser.hpp index a850cb8..2aee82a 100644 --- a/parser.hpp +++ b/parser.hpp @@ -47,7 +47,8 @@ public: state.dict.addDefinition(sub); state.dict.add(CoreWords::HiddenWordLiteral); state.dict.add(state.pop()); - state.dict.add(CoreWords::findi("exit")); + state.dict.add(CoreWords::findi(";")); + CoreWords::run(CoreWords::findi(";"), state); break; default: break;