From 23f2cc88d268ecc1ed0cd5f70a315b02f94ff21b Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 18 Feb 2023 23:39:21 +0100 Subject: added C math exercise --- exercises/093_hello_c.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/093_hello_c.zig') diff --git a/exercises/093_hello_c.zig b/exercises/093_hello_c.zig index b294f38..368a918 100644 --- a/exercises/093_hello_c.zig +++ b/exercises/093_hello_c.zig @@ -57,7 +57,7 @@ pub fn main() void { const c_res = write(2, "Hello C from Zig!", 17); // let's see what the result from C is: - std.debug.print(" - C result ist {d} chars\n", .{c_res}); + std.debug.print(" - C result ist {d} chars written.\n", .{c_res}); } // // Something must be considered when compiling with C functions. -- cgit v1.2.3