1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-11 22:56:04 +02:00

small improvements in hello_c

This commit is contained in:
Chris Boesch 2023-02-19 00:00:08 +01:00
parent 393a4fe41e
commit 2866313896
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ pub fn main() void {
//
// In this exercise we use 'write' to output 17 chars,
// but something is missing...
const c_res = write(2, "Hello C from Zig!", 17);
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 written.\n", .{c_res});

View File

@ -1,4 +1,4 @@
57c57
< const c_res = write(2, "Hello C from Zig!", 17);
< const c_res = ???write(2, "Hello C from Zig!", 17);
---
> const c_res = c.write(2, "Hello C from Zig!", 17);