about summary refs log tree commit diff
path: root/examples/6.5.src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/6.5.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/6.5.src b/examples/6.5.src
index 53abd86..e82393a 100644
--- a/examples/6.5.src
+++ b/examples/6.5.src
@@ -1,7 +1,7 @@
 let main = () => i64 {
 	let x = !(1 == 1);
 	if !x {
-		printb(x);
+		printf("%d", x);
 	};
 	return 0;
 };