From a8e7f57e0762c782dec016bfff4d8d3b4e9aa1a9 Mon Sep 17 00:00:00 2001 From: numzero Date: Fri, 11 Apr 2025 19:05:53 +0300 Subject: [PATCH] oops... the most important type! --- src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.rs b/src/types.rs index 8147462..01437de 100644 --- a/src/types.rs +++ b/src/types.rs @@ -2,6 +2,7 @@ use std::{cell::RefCell, collections::HashMap, hash::Hash, rc::Rc}; #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum ValueInner { + Boolean(bool), Number(i64), String(String), Table(Table),