about summary refs log tree commit diff
path: root/examples/11.src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/11.src')
-rw-r--r--examples/11.src4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/11.src b/examples/11.src
index cfefad8..cc23719 100644
--- a/examples/11.src
+++ b/examples/11.src
@@ -6,8 +6,8 @@ let main = () => i64 {
 	};
 
 	let id = (a: i64) => i64 {
-		printf("%d", a);
-		printf("%d", 12);
+		printf("%d\n", a);
+		printf("%d\n", 12);
 		return a;
 	};