about summary refs log tree commit diff
path: root/examples/1.5.src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/1.5.src')
-rw-r--r--examples/1.5.src4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/1.5.src b/examples/1.5.src
index 1f99ee3..ea4c4e0 100644
--- a/examples/1.5.src
+++ b/examples/1.5.src
@@ -1,12 +1,12 @@
 let x = () => i64 {
-	print(22);
+	printf("%d", 22);
 	return 11;
 };
 
 let main = () => i64 {
 	let i = 4;
 
-	print(i);
+	print("%d", i);
 
 	return x();
 };