From c090ab2336d4f2f8536ca47a17f3e689299ea45e Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 4 Jan 2023 19:45:38 -0800 Subject: math builtins done --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 8a3edb5..92e7764 100644 --- a/src/main.c +++ b/src/main.c @@ -92,11 +92,11 @@ int main(int argc, char **argv) { /* TODO: TEST HASH TABLE COLLISIONS */ /* DONE: TEST BUILTIN FUNCTIONS */ - lexer_t *lexer = init_lexer("(+ (+ 3 4) 4)"); + lexer_t *lexer = init_lexer("(/ (+ 3.0 4.0) 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); + printf("%f\n", res->float_value); return 0; } -- cgit