fnotation 0.11.2

A simple lower-house syntax for programming language experimentation
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod grammar;
pub mod lexer;
pub mod parser;
#[cfg(test)]
mod test_util;
pub mod token;
pub mod types;
pub mod util;

pub use types::*;
pub use util::*;