aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorAlan CHUNG <[email protected]>2024-03-27 16:53:19 +0800
committerAlan CHUNG <[email protected]>2024-03-27 16:53:19 +0800
commit05589f8ba1f7a419712a15e3385bd4f0180fb48c (patch)
tree41ac0b119e1623aa6ac3fc32dc34ead4babd688a /exercises
parent223fc79e441dab99297472a0cfe8a4c63e423b4e (diff)
downloadziglings-05589f8ba1f7a419712a15e3385bd4f0180fb48c.tar.xz
ziglings-05589f8ba1f7a419712a15e3385bd4f0180fb48c.zip
added format parameter {d}
Diffstat (limited to 'exercises')
-rw-r--r--exercises/106_files.zig2
-rw-r--r--exercises/107_files2.zig2
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/106_files.zig b/exercises/106_files.zig
index 78e6611..aa58ee0 100644
--- a/exercises/106_files.zig
+++ b/exercises/106_files.zig
@@ -59,7 +59,7 @@ pub fn main() !void {
// !you are not allow to switch this two lines to before file closing line!
const byte_written = try file.write("It's zigling time!");
- std.debug.print("Successfully wrote {} bytes.\n", .{byte_written});
+ std.debug.print("Successfully wrote {d} bytes.\n", .{byte_written});
}
// to check if you actually write to the file, you can either,
// 1. open the file on your text editor, or
diff --git a/exercises/107_files2.zig b/exercises/107_files2.zig
index 18d59ef..dadfdf6 100644
--- a/exercises/107_files2.zig
+++ b/exercises/107_files2.zig
@@ -45,7 +45,7 @@ pub fn main() !void {
// Woah, too screamy, I know you're excited for zigling time but tone it down a bit
// Can you print only what we read from the file ?
- std.debug.print("Successfully Read {} byte: {s}\n", .{
+ std.debug.print("Successfully Read {d} byte: {s}\n", .{
byte_read,
content, // change this line only
});