oops... the most important type!

This commit is contained in:
numzero 2025-04-11 19:05:53 +03:00
parent e4bf43dc6d
commit a8e7f57e07

View File

@ -2,6 +2,7 @@ use std::{cell::RefCell, collections::HashMap, hash::Hash, rc::Rc};
#[derive(Debug, Clone, PartialEq, Eq, Hash)] #[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ValueInner { pub enum ValueInner {
Boolean(bool),
Number(i64), Number(i64),
String(String), String(String),
Table(Table), Table(Table),