From 8fd13680a7b87dc1a9ba2119666f7b0e26bc62b5 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Wed, 11 Jun 2025 00:10:59 +0200 Subject: stdlib: Remove println varargs forwarding is platform specific with llvm, so we cannot easily have this function --- examples/17.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/17.src') 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; }; -- cgit 1.4.1