From 545f3a7a3e148324981c7a3bffff8045ec60ea05 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Mon, 9 Jan 2023 23:05:10 -0800 Subject: add exp function --- src/visitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/visitor.c') diff --git a/src/visitor.c b/src/visitor.c index ffd6048..0ca29d9 100644 --- a/src/visitor.c +++ b/src/visitor.c @@ -94,7 +94,7 @@ ast_t *eval_symbol(visitor_t *v, ast_t *e) { hash_table_add(v->eval_table, e->string_value, eval); return eval; } else { - /* printf("symbol error\n"); */ + printf("symbol error\n"); eval_error(v, e); return NULL; } -- cgit