tex 0.1.1

The νTeX typesetting engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// use std::collections::LinkedList;

pub struct Environ {
    // parser: Box<dyn Parser>,
// stack: LinkedList<Box<dyn Parser>>,
}

impl Environ {
    pub fn new() -> Self {
        Self {}
    }
}