Feat: script execution performance optimization
Some checks failed
Deploy Website / deploy (push) Failing after 4m52s

This commit is contained in:
2026-02-22 14:16:38 +01:00
parent 1ce5b8597a
commit 40e69b66da
20 changed files with 377 additions and 134 deletions

View File

@@ -2,7 +2,7 @@ use super::harness::*;
#[test]
fn choose_from_stack() {
let f = forth();
let mut f = forth();
let ctx = default_ctx();
f.evaluate("1 2 3 3 choose", &ctx).unwrap();
let val = stack_int(&f);