mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-10 17:09:59 +00:00
added format parameter {d}
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user