dark_vm/values/
mod.rs

1/// The Value module, which contains the Value struct. This maintains the position, along with the kind of a given value.
2pub mod value;
3
4/// The ValueKinds module, which contains the ValueKind enum. These describe the various values within the program.
5pub mod value_kinds;