pub type EvalResult = Result<Value, RuntimeError>;
pub enum EvalResult { Ok(Value), Err(RuntimeError), }
Contains the success value
Contains the error value