Fix patch after print alias fix in 100_fo4.zig

This commit is contained in:
Zorgatone 2025-01-07 15:26:04 +00:00
parent c2dcaf3099
commit 6b29634279

View file

@ -7,5 +7,5 @@
- for (hex_nums, ???) |hn, ???| {
+ for (hex_nums, dec_nums) |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;