diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-29 00:19:03 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-29 00:19:56 +0100 |
commit | b6ecf700ec3944214a364b61993f8cd9acf0cbc6 (patch) | |
tree | 8156ee9cc8e32da6ea7facf951ce9ac784bd1232 /examples/1.src | |
parent | Codegen: Get printf working (diff) | |
download | interpreter-b6ecf700ec3944214a364b61993f8cd9acf0cbc6.tar.gz interpreter-b6ecf700ec3944214a364b61993f8cd9acf0cbc6.tar.bz2 interpreter-b6ecf700ec3944214a364b61993f8cd9acf0cbc6.zip |
Codegen: Get variable declarations kind of working
Diffstat (limited to 'examples/1.src')
-rw-r--r-- | examples/1.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/1.src b/examples/1.src index cb29345..7c4b8a5 100644 --- a/examples/1.src +++ b/examples/1.src @@ -1,7 +1,7 @@ let main = () => { let i = 4; - print(i); + printf(i); return 0; }; |