Files
langrpg/src/lib.rs

10 lines
276 B
Rust
Raw Normal View History

2026-03-12 21:09:49 -07:00
//! rust-langrpg — RPG IV free-format parser library
//!
2026-03-12 22:24:52 -07:00
//! Provides the typed AST ([`ast`]), recursive-descent parser and lowering
//! pass ([`lower`]), and LLVM code-generator ([`codegen`]) used by the
//! compiler pipeline.
2026-03-12 21:41:30 -07:00
pub mod ast;
pub mod lower;
pub mod codegen;