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/9.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/9.src') diff --git a/examples/9.src b/examples/9.src index 9087c09..ae586c2 100644 --- a/examples/9.src +++ b/examples/9.src @@ -1,7 +1,7 @@ import "!stdlib.src"; let print_boolean = (b: bool) => i64 { - println("%d", b); + printf("%d\n", b); return 0; }; -- cgit 1.4.1