#![warn(clippy::all)]
#[path = "doc/introduction.rs"]
#[allow(non_snake_case)]
pub mod _Introduction;
#[path = "doc/chapter_1.rs"]
#[allow(non_snake_case)]
pub mod __Chapter_1;
#[path = "doc/chapter_2.rs"]
#[allow(non_snake_case)]
pub mod __Chapter_2;
#[path = "doc/appendix_a.rs"]
#[allow(non_snake_case)]
pub mod ___Appendix_A;
pub mod lang;
pub mod mach;
mod term;
fn main() {
term::main();
}