9 lines
152 B
Rust
9 lines
152 B
Rust
|
#[derive(Debug)]
|
||
|
pub enum OpCode {
|
||
|
/// Access a constant for use.
|
||
|
OpConstant(usize),
|
||
|
|
||
|
/// Return from the current function.
|
||
|
OpReturn,
|
||
|
}
|