This commit is contained in:
2026-01-21 17:05:30 +01:00
commit 67322381c3
59 changed files with 10421 additions and 0 deletions

35
tests/forth.rs Normal file
View File

@@ -0,0 +1,35 @@
#[path = "forth/harness.rs"]
mod harness;
#[path = "forth/arithmetic.rs"]
mod arithmetic;
#[path = "forth/comparison.rs"]
mod comparison;
#[path = "forth/context.rs"]
mod context;
#[path = "forth/control_flow.rs"]
mod control_flow;
#[path = "forth/errors.rs"]
mod errors;
#[path = "forth/randomness.rs"]
mod randomness;
#[path = "forth/sound.rs"]
mod sound;
#[path = "forth/stack.rs"]
mod stack;
#[path = "forth/temporal.rs"]
mod temporal;
#[path = "forth/variables.rs"]
mod variables;
#[path = "forth/quotations.rs"]
mod quotations;