Remove stuff

Preparing for a very simple parser.
This commit is contained in:
Joscha 2021-09-28 23:32:48 +02:00
parent f42aec4132
commit fafb58adfa
7 changed files with 49 additions and 152 deletions

17
src/value.rs Normal file
View file

@ -0,0 +1,17 @@
use std::fmt::Debug;
use crate::table::Table;
// TODO: Unwrap the Key part so this is only 16, not 24 bytes
#[derive(Debug, Clone, PartialEq)]
pub enum Value {
// Bool(bool),
// Builtin(Builtin),
Int(i64),
// String(Box<String>),
Table(Table),
// Float(f64),
// Nil,
// Path(Table),
}