about summary refs log tree commit diff
path: root/examples/17.src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-06-11 00:10:59 +0200
committerBaitinq <[email protected]>2025-06-11 00:11:01 +0200
commit8fd13680a7b87dc1a9ba2119666f7b0e26bc62b5 (patch)
tree80e8e9319734e112558f1a9c31485b1c01bccb41 /examples/17.src
parentBoostrap: fix aarch64 linking (diff)
downloadinterpreter-8fd13680a7b87dc1a9ba2119666f7b0e26bc62b5.tar.gz
interpreter-8fd13680a7b87dc1a9ba2119666f7b0e26bc62b5.tar.bz2
interpreter-8fd13680a7b87dc1a9ba2119666f7b0e26bc62b5.zip
stdlib: Remove println
varargs forwarding is platform specific with llvm, so we cannot easily
have this function
Diffstat (limited to 'examples/17.src')
-rw-r--r--examples/17.src4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/17.src b/examples/17.src
index 779ff74..93a313f 100644
--- a/examples/17.src
+++ b/examples/17.src
@@ -6,8 +6,8 @@ import "!stdlib.src";
 let main = () => i64 {
 	let x = malloc(8);
 	*x = 10;
-	println("%p", x);
-	println("%d", *x);
+	printf("%p\n", x);
+	printf("%d\n", *x);
 	free(x);
 	return 0;
 };