diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-08-24 19:30:51 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-08-24 19:30:51 +0200 |
| commit | 0dbe83b20ec71c1be5108a42235220a77f9649a2 (patch) | |
| tree | 3e2b717dcb956c374cc2135ccf11dae9ef4360b7 /exercises/106_files.zig | |
| parent | 4134d4fa6f2a9c0ae7a56cd6a7b2d156d62c0de1 (diff) | |
| parent | e422e242157494df46b6c0ddbaaa4c2a6a3f1790 (diff) | |
Merge pull request 'fixes some minor typos' (#300) from i122 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/300
Diffstat (limited to 'exercises/106_files.zig')
| -rw-r--r-- | exercises/106_files.zig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/exercises/106_files.zig b/exercises/106_files.zig index b224508..b38bc72 100644 --- a/exercises/106_files.zig +++ b/exercises/106_files.zig @@ -63,8 +63,9 @@ pub fn main() !void { } // to check if you actually write to the file, you can either, // 1. open the file in your text editor, or -// 2. print the content of the file in the console with the following command -// >> cat ./output/zigling.txt +// 2. print the content of the file in the console with one of these commands +// Linux/macOS: >> cat ./output/zigling.txt +// Windows (CMD): >> type .\output\zigling.txt // // // More on Creating files |
