1
2
3
4
5
6
7
8
9
use std::collections::BTreeMap;
mod builtin;

pub struct LaTeXEngine {
    functions: BTreeMap<String, String>,
    operators: BTreeMap<String, String>,
    spaces: BTreeMap<String, f32>,
    letters: BTreeMap<String, String>,
}