summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-04 19:33:28 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-04 19:33:28 -0800
commit94f847851cd5fb81da18564a1b858ff20240d97a (patch)
tree1c2faa50cb7dc45b6f46b666da4e1624d9cd9877 /src/main.c
parent6fe77e2f20f045b89ed10c3952f8f088e9bd3d6c (diff)
builtin functions now evaluate
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 7271728..8a3edb5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -91,6 +91,12 @@ int main(int argc, char **argv) {
/* } */
/* TODO: TEST HASH TABLE COLLISIONS */
- /* TODO: TEST LIST EVALUATION */
+ /* DONE: TEST BUILTIN FUNCTIONS */
+ lexer_t *lexer = init_lexer("(+ (+ 3 4) 4)");
+ parser_t *parser = init_parser(lexer);
+ visitor_t *visitor = init_visitor(parser);
+ ast_t *root = eval(visitor);
+ ast_t *res = root->subnodes[0];
+ printf("%d\n", res->int_value);
return 0;
}