pub type Result<T> = Result<T, PeplError>;
Result type used throughout the PEPL compiler.
pub enum Result<T> { Ok(T), Err(PeplError), }
Contains the success value
Contains the error value