From: Clyne Sullivan Date: Thu, 9 Feb 2023 16:16:38 +0000 (-0500) Subject: fix const X-Git-Url: https://code.bitgloo.com/clyne/sforth/commit/f8fdc3746ca3f4a3b4e913b0bf34ce475eca0bf5/clyne/sforth/commit/f8fdc3746ca3f4a3b4e913b0bf34ce475eca0bf5/git?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;