diff options
| author | Baitinq <[email protected]> | 2025-02-04 20:15:57 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-02-04 20:15:57 +0100 |
| commit | 83a879f26247380437a3127212876217bcd2064b (patch) | |
| tree | 991253edf87f41d2fb20003655af55d1738f2532 /examples | |
| parent | Codegen: Support anonymous functions (diff) | |
| download | pry-lang-83a879f26247380437a3127212876217bcd2064b.tar.gz pry-lang-83a879f26247380437a3127212876217bcd2064b.tar.bz2 pry-lang-83a879f26247380437a3127212876217bcd2064b.zip | |
Codegen: "Support" booleans
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/9.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/9.src b/examples/9.src index f3ab389..e898252 100644 --- a/examples/9.src +++ b/examples/9.src @@ -3,7 +3,7 @@ let main = () => { i = !i; if !i { - print(i); + printb(!i); return 1; }; |