diff options
| author | Baitinq <[email protected]> | 2025-02-11 00:17:48 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-02-11 00:17:48 +0100 |
| commit | f8e20d8d834b155a9476b4244ef01229a3a1e79d (patch) | |
| tree | 1eafc25d797e36dab8191283a442f5caa53e2e16 /examples | |
| parent | Codegen: Fix generating unary expressions (diff) | |
| download | pry-lang-f8e20d8d834b155a9476b4244ef01229a3a1e79d.tar.gz pry-lang-f8e20d8d834b155a9476b4244ef01229a3a1e79d.tar.bz2 pry-lang-f8e20d8d834b155a9476b4244ef01229a3a1e79d.zip | |
Codegen: Fix generating binop expressions
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 7c4b8a5..cb29345 100644 --- a/examples/1.src +++ b/examples/1.src @@ -1,7 +1,7 @@ let main = () => { let i = 4; - printf(i); + print(i); return 0; }; |