From: Clyne Sullivan Date: Thu, 9 Feb 2023 16:16:38 +0000 (-0500) Subject: fix const X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=8b7ac38c8a12687a4c1a440f93a61491230ba9af;p=bitgloo%2Falee-forth.git fix const --- 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;