subscript-compiler 0.21.0

A modern LaTeX rendition.
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(unused)]
use subscript_compiler;

fn main() {
    let source = include_str!("./other/invalid.txt");
    let xs = subscript_compiler::frontend::parser::parse_source(source);
    for x in xs {
        println!("{:#?}", x);
    }
}