y_lang/lib.rs
1//! Y
2//!
3//! This library is the primary source for interacting with the Y programming language.
4//! It provides tools for parsing, type checking and compiling Y programs.
5#[macro_use]
6extern crate pest_derive;
7
8mod asm;
9pub mod ast;
10pub mod compiler;
11pub mod loader;
12pub mod typechecker;