WIP: even more crazy linux optimizations
Some checks failed
Deploy Website / deploy (push) Failing after 4m46s

This commit is contained in:
2026-02-03 00:38:46 +01:00
parent b53e4a76ab
commit af81c94207
6 changed files with 41 additions and 34 deletions

View File

@@ -9,4 +9,4 @@ pub use types::{
CcAccess, Dictionary, ExecutionTrace, Rng, SourceSpan, StepContext, Value, Variables,
};
pub use vm::Forth;
pub use words::{Word, WordCompile, WORDS};
pub use words::{lookup_word, Word, WordCompile, WORDS};

View File

@@ -2806,7 +2806,7 @@ static WORD_MAP: LazyLock<HashMap<&'static str, &'static Word>> = LazyLock::new(
map
});
fn lookup_word(name: &str) -> Option<&'static Word> {
pub fn lookup_word(name: &str) -> Option<&'static Word> {
WORD_MAP.get(name).copied()
}