From 2d5f634d0d28a0762835afa01dd1e9eb212e4803 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Tue, 25 Mar 2025 14:35:06 +0300 Subject: Implement all instructions Something doesn't work, though --- cccl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cccl.c') 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); } -- cgit 1.4.1