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/7.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/7.src') diff --git a/examples/7.src b/examples/7.src index 6b45b73..a94891d 100644 --- a/examples/7.src +++ b/examples/7.src @@ -10,7 +10,7 @@ let main = () => i64 { let i = 4; if (1 - -1 * 2) == 5 - (-1 + 1 + ten() / 2) + 3 { - println("%d", i); + printf("%d\n", i); return i; }; -- cgit 1.4.1