Files
langrpg/src/lib.rs
2026-03-12 22:24:52 -07:00

10 lines
276 B
Rust

//! rust-langrpg — RPG IV free-format parser library
//!
//! Provides the typed AST ([`ast`]), recursive-descent parser and lowering
//! pass ([`lower`]), and LLVM code-generator ([`codegen`]) used by the
//! compiler pipeline.
pub mod ast;
pub mod lower;
pub mod codegen;