diff options
| author | Baitinq <[email protected]> | 2025-01-28 00:40:59 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-28 00:44:00 +0100 |
| commit | dd7084f9cffdce559b96c31d7bf21d2e3ebe5340 (patch) | |
| tree | 06020f0c7db8c0c33d0e249787833bd3c3c66006 /examples | |
| parent | Codegen: Cleanup (diff) | |
| download | pry-lang-dd7084f9cffdce559b96c31d7bf21d2e3ebe5340.tar.gz pry-lang-dd7084f9cffdce559b96c31d7bf21d2e3ebe5340.tar.bz2 pry-lang-dd7084f9cffdce559b96c31d7bf21d2e3ebe5340.zip | |
Codegen: Get printf working
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/0.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/0.src b/examples/0.src index d73769a..a55a285 100644 --- a/examples/0.src +++ b/examples/0.src @@ -1,7 +1,7 @@ /* HELLO! Welcome to the unnamed language */ let main = () => { - print(2); + printf(2); return 1; }; |