oris 0.2.1

An interpreter for Monkey
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) mod token;

mod error;
mod lexer;

#[cfg(test)]
mod tests;

pub(crate) type Lexer<'a> = lexer::Lexer<'a>;

pub(crate) type Error = error::Error;
pub(crate) type Result<T> = std::result::Result<T, self::error::Error>;