Skip to main content

workshop_rs/values/
mod.rs

1//! The Workshop value and expression domain.
2//!
3//! Values and their canonical expression forms are modeled in [`crate::Program`].
4//! The shared parser and output boundaries preserve their locale-independent
5//! identities.
6
7pub(crate) mod emitter;
8pub(crate) mod parser;
9pub(crate) mod validate;
10
11pub use crate::program::Value;