This commit is contained in:
nora 2022-01-01 13:47:56 +01:00
parent 88a3a585e7
commit 4e30201be4
11 changed files with 222 additions and 20 deletions

View file

@ -38,4 +38,9 @@ pub enum Instr {
/// Println the value on top of the stack
Print,
/// If the current stack value is true, skip `usize` instructions.
JumpFalse(usize),
/// Same as `JumpCond`, but unconditional
Jmp(usize),
}