From 6c78cffe56e5ff5f1aa80db26d2637ef6037fb6f Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Sun, 15 Dec 2024 23:49:27 -0500 Subject: [PATCH] finish list of valid types --- src/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.rs b/src/compiler.rs index 402ec18..4b90399 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -59,7 +59,7 @@ impl<'a> Chunk<'a> { spans: vec![], strings: vec![], keywords: vec![ - "nil", "bool", "number", "keyword", "string", "tuple", "list", "", + "nil", "bool", "number", "keyword", "string", "tuple", "list", "dict", "box", "fn", ], nodes: vec![], ast: &ast.0,