diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-07-09 15:40:55 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-07-09 15:40:55 +0100 |
commit | b6cf209e65721c9b749124e6c5866b9359fc6583 (patch) | |
tree | 6426e7481f864b3a1d72c0bc21e4c89df6e9463e /comp/lucas-standen-NEA/code/execution/exec.c | |
parent | 3f23b452f8ab504a3337f88ddc714c3a660d2648 (diff) |
made alot work with vars
Diffstat (limited to 'comp/lucas-standen-NEA/code/execution/exec.c')
-rw-r--r-- | comp/lucas-standen-NEA/code/execution/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comp/lucas-standen-NEA/code/execution/exec.c b/comp/lucas-standen-NEA/code/execution/exec.c index 8775526..73961ac 100644 --- a/comp/lucas-standen-NEA/code/execution/exec.c +++ b/comp/lucas-standen-NEA/code/execution/exec.c @@ -6,7 +6,7 @@ #include "../tokenizer/tokenizer.h" int main(){ - char *sample = "(write ['h','e','l','l','o','\n'])"; + char *sample = "(let a:i64 5)"; ast_node *root = tokenize(sample); doCall(root); |