1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//!
//! Library crate for lambda_calc, a lambda calculus interpreter.
//!
//! This crate contains the lexer and parser, along with methods for printing
//! and beta reducing the resulting expressions.
//!

pub mod lexer;
pub mod parser;
pub mod ast;
pub mod cmd;

pub use parser::Parser;
pub use ast::Ast;