inator 0.1.2

Optimal zero-copy parsers with nondeterministic finite automata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fn shit() {
    println!("shit");
}

mod module {
    fn shit() {
        panic!("Wrong function");
    }

    pub fn main() {
        use super::*; // Comment this out and see what happens!
        shit()
    }
}

fn main() {
    module::main()
}