Interpreter - Values
This commit is contained in:
parent
b5e9a1825a
commit
58a986d280
1 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
/// A value being handled by the interpreter.
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum Value {
|
||||
Nil,
|
||||
Boolean(bool),
|
||||
String(String),
|
||||
Number(f64),
|
||||
}
|
Loading…
Reference in a new issue