monkeyinterpreter 0.2.0

An interpreter written in Rust for the monkey programming language described in the book 'Writing An Interpreter In Go' (https://interpreterbook.com/).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::{
    error::Error,
    fmt::{self, Display},
};

#[derive(Debug)]
pub struct EvalError(pub String);

impl Error for EvalError {}

impl Display for EvalError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}