summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
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;
}