From 89c9a36722effe14b8418778ce7632b36919d276 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 31 Oct 2019 14:38:06 -0700 Subject: [PATCH] Remove debug printf --- 07/runtime.c | 1 - 1 file changed, 1 deletion(-) diff --git a/07/runtime.c b/07/runtime.c index 6ee3cd6..c7bc5b0 100644 --- a/07/runtime.c +++ b/07/runtime.c @@ -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); }