added format parameter {d}

This commit is contained in:
Alan CHUNG
2024-03-27 16:53:19 +08:00
parent 223fc79e44
commit 05589f8ba1
4 changed files with 7 additions and 7 deletions

View File

@@ -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