dark_vm/utils/
mod.rs

1/// The stack module, which contains the stack and different functions to control the stack.
2pub mod stack;
3
4/// The frames module, which contains the frame struct. Frames are used when the VM jumps to a label.
5pub mod frames;
6
7/// The store module, which provides a nice wrapper around a HashMap for maintaining variables.
8pub mod store;