summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/093_hello_c.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-02-16 19:28:10 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-02-16 19:28:10 +0100
commitdc187889c1a0cec8cb0e7de67df96ebc9e981995 (patch)
treea7e1052ecd65b52f3c3ba3a902cbe8b897a65856 /exercises/093_hello_c.zig
parentbb956254774ed022f29c70e98f7ca95c28f2c86f (diff)
some improvements in the description
Diffstat (limited to 'exercises/093_hello_c.zig')
-rw-r--r--exercises/093_hello_c.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/093_hello_c.zig b/exercises/093_hello_c.zig
index 1877e04..b294f38 100644
--- a/exercises/093_hello_c.zig
+++ b/exercises/093_hello_c.zig
@@ -36,11 +36,11 @@
//
// So that all this does not remain a dry theroy now, let's just start
// and call a C function out of Zig.
-//
+
// our well-known "import" for Zig
const std = @import("std");
-// new the import for C
+// and here the new the import for C
const c = @cImport({
@cInclude("unistd.h");
});
@@ -50,9 +50,9 @@ pub fn main() void {
// In order to output a text that can be evaluated by the
// Zig Builder, we need to write it to the Error output.
// In Zig we do this with "std.debug.print" and in C we can
- // specify the file descriptor i.e. 2 for error console.
+ // specify a file descriptor i.e. 2 for error console.
//
- // In this case we use 'write' to output 17 chars,
+ // In this exercise we use 'write' to output 17 chars,
// but something is missing...
const c_res = write(2, "Hello C from Zig!", 17);