Implementing new types

- nil symbols
- Bool
- Vectors
- Maps
This commit is contained in:
teo3300
2023-06-06 16:33:01 +02:00
parent 13790d0864
commit 703b6888b5
4 changed files with 64 additions and 33 deletions

View File

@ -17,6 +17,7 @@ fn READ(input: &str) -> MalType {
#[allow(non_snake_case)]
/// Evaluate the generated ast
fn EVAL(ast: MalType) -> MalType {
println!("{:#?}", ast);
ast
}