1
2
3
4
5
6
7
pub type Instructions = Vec<Code>;

#[derive(Debug, Clone, PartialEq)]
pub enum Code {
    Constant(usize),
    Add,
}