diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-09 23:05:10 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-09 23:05:10 -0800 |
commit | 545f3a7a3e148324981c7a3bffff8045ec60ea05 (patch) | |
tree | bbd8f1ce1a656047139efcf1a073220546d0dfd7 /src/visitor.c | |
parent | 43f11a93385c4848bfad49510bdea2849f241816 (diff) |
add exp function
Diffstat (limited to 'src/visitor.c')
-rw-r--r-- | src/visitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |