fr 0.1.1

A programming language with an unusual compiler backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
extern crate lazy_static;

pub mod compile;
pub use compile::*;
pub mod env;
pub use env::*;
pub mod ir;
pub use ir::*;
pub mod parser;
pub use parser::*;
pub mod simplify;
pub use simplify::*;