1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! # Overview
//!
//! `zypo-lib` is the primary backend library for the reference Zypo compiler.
//! If you are looking for the CLI for `zypo-rs`, you may find it
//! [here](https://gitlab.com/Owez/zypo-rs/tree/master/zypo-rs/src).
//! 
//! # Links
//! 
//! - [Repository](https://gitlab.com/Owez/zypo-rs)
//! - [Overall compiler info](https://gitlab.com/Owez/zypo-rs/blob/master/README.md)

#[macro_use]
extern crate lalrpop_util;

pub mod backend;
pub mod parser;