about summary refs log tree commit diff
path: root/cccl.c
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2025-03-25 14:35:06 +0300
committerNakidai <nakidai@disroot.org>2025-03-25 14:35:06 +0300
commit2d5f634d0d28a0762835afa01dd1e9eb212e4803 (patch)
treee3e141464181f88dff69c32e1cb48b6f9e258f37 /cccl.c
parent98a243bf9ab1a3e8bd2de56d7b16302f303f323a (diff)
download3cl-2d5f634d0d28a0762835afa01dd1e9eb212e4803.tar.gz
3cl-2d5f634d0d28a0762835afa01dd1e9eb212e4803.zip
Implement all instructions
Something doesn't work, though
Diffstat (limited to 'cccl.c')
-rw-r--r--cccl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cccl.c b/cccl.c
index 64da3b1..234fa7e 100644
--- a/cccl.c
+++ b/cccl.c
@@ -14,6 +14,6 @@ void cccl(struct cccl_File file)
 
     struct cccl_Node *parsed = cccl_parse(tokens, tokens_amount, 0, 0);
 
-    struct cccl_Variables scope;
-    cccl_execute(parsed, &scope);
+    struct cccl_Variables scope = {0};
+    cccl_execute(parsed, &scope, 0);
 }