diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-30 23:39:16 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-30 23:39:32 +0100 |
commit | 8d5f212c9875818c75e3007ecadadfd112a3438d (patch) | |
tree | fc5057a9b83c758a2bc16540b356a5f96afaf736 /examples/4.src | |
parent | Codegen: Get addition kind of working (diff) | |
download | interpreter-8d5f212c9875818c75e3007ecadadfd112a3438d.tar.gz interpreter-8d5f212c9875818c75e3007ecadadfd112a3438d.tar.bz2 interpreter-8d5f212c9875818c75e3007ecadadfd112a3438d.zip |
Codegen: Fix bug calling printf
Diffstat (limited to 'examples/4.src')
-rw-r--r-- | examples/4.src | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/4.src b/examples/4.src index 0dd81ae..b955155 100644 --- a/examples/4.src +++ b/examples/4.src @@ -3,7 +3,6 @@ let print_one = () => { return 4; }; - let main = () => { let y = print_one() + 2; |