diff options
| author | Baitinq <[email protected]> | 2025-01-29 00:19:03 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-29 00:19:56 +0100 |
| commit | 87160741fa6d81318a492708fd83984c8807fc77 (patch) | |
| tree | 8156ee9cc8e32da6ea7facf951ce9ac784bd1232 /examples | |
| parent | Codegen: Get printf working (diff) | |
| download | pry-lang-87160741fa6d81318a492708fd83984c8807fc77.tar.gz pry-lang-87160741fa6d81318a492708fd83984c8807fc77.tar.bz2 pry-lang-87160741fa6d81318a492708fd83984c8807fc77.zip | |
Codegen: Get variable declarations kind of working
Diffstat (limited to 'examples')
| -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; }; |