Files
Cagire/crates/forth/src/lib.rs
Raphaël Forment dd853b8e1b
Some checks failed
Deploy Website / deploy (push) Failing after 4m46s
Feat: begin slight refactoring
2026-02-01 12:38:48 +01:00

13 lines
238 B
Rust

mod compiler;
mod ops;
mod theory;
mod types;
mod vm;
mod words;
pub use types::{
CcAccess, Dictionary, ExecutionTrace, Rng, SourceSpan, StepContext, Value, Variables,
};
pub use vm::Forth;
pub use words::{Word, WordCompile, WORDS};