about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-02-04 20:15:57 +0100
committerBaitinq <[email protected]>2025-02-04 20:15:57 +0100
commit83a879f26247380437a3127212876217bcd2064b (patch)
tree991253edf87f41d2fb20003655af55d1738f2532 /examples
parentCodegen: Support anonymous functions (diff)
downloadpry-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.src2
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;
 	};