type_down/lib.rs
1//! # TypeDown Interpreter Libraries
2//!
3//! This library re-exports the core components of the TypeDown interpreter system:
4//!
5//! - `core`: Core types, traits, AST definitions and utilities for the TypeDown language
6//! - `eval`: Evaluation engine and rendering for TypeDown documents
7//! - `syntax`: Syntax parsing and lexical analysis
8//!
9//! These modules provide a complete implementation of the TypeDown language interpreter,
10//! allowing embedding, extension, and use of TypeDown in Rust applications.
11
12pub use tyd_core as core;
13pub use tyd_eval as eval;
14pub use tyd_syntax as syntax;