Use print alias in exercise 100_for4.zig

This commit is contained in:
Zorgatone 2025-01-07 15:21:36 +00:00
parent 468e3d7eed
commit c2dcaf3099

View file

@ -41,12 +41,12 @@ pub fn main() void {
for (hex_nums, ???) |hn, ???| { for (hex_nums, ???) |hn, ???| {
if (hn != dn) { if (hn != dn) {
std.debug.print("Uh oh! Found a mismatch: {d} vs {d}\n", .{ hn, dn }); print("Uh oh! Found a mismatch: {d} vs {d}\n", .{ hn, dn });
return; return;
} }
} }
std.debug.print("Arrays match!\n", .{}); print("Arrays match!\n", .{});
} }
// //
// You are perhaps wondering what happens if one of the two lists // You are perhaps wondering what happens if one of the two lists