1
2
3
4
5
6
7
8
9
/// Exit codes for the main interpreter loops
#[derive(Debug, Clone, Hash, Eq, PartialEq, Serialize)]
#[repr(u8)]
pub enum ExitCode {
    Ok = 0,
    GenericError = 1,
    SyntaxError = 2,
    NotImplemented = 3,
}