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