dlang 0.1.3

Programing language from scratch
Documentation
1
2
3
4
5
6
#[derive(Debug)]
pub struct LexerError {
    pub pos_start: usize,
    pub pos_end: usize,
    pub reason: String,
}