Remove debug printf

This commit is contained in:
Danila Fedorin 2019-10-31 14:38:06 -07:00
parent c704187012
commit 3aa468c2f6
1 changed files with 0 additions and 1 deletions

View File

@ -156,5 +156,4 @@ extern void f_main(struct stack* s);
int main(int argc, char** argv) {
struct node_global* first_node = alloc_global(f_main, 0);
struct node_base* result = eval((struct node_base*) first_node);
printf("%d\n", ((struct node_num*) result)->value);
}