diff options
| author | Zorgatone <zorgatone@gmail.com> | 2025-01-07 15:21:36 +0000 |
|---|---|---|
| committer | Zorgatone <zorgatone@gmail.com> | 2025-01-07 15:21:36 +0000 |
| commit | c2dcaf309953cfa89947e359db93c2c2b13f19ba (patch) | |
| tree | 73120d4132bb6ae06c7dfbd597820a3698d95ebc /exercises/100_for4.zig | |
| parent | 468e3d7eed7cfbb68067afb34593dbc1109396d7 (diff) | |
Use print alias in exercise 100_for4.zig
Diffstat (limited to 'exercises/100_for4.zig')
| -rw-r--r-- | exercises/100_for4.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/100_for4.zig b/exercises/100_for4.zig index e0fa602..c8a1161 100644 --- a/exercises/100_for4.zig +++ b/exercises/100_for4.zig @@ -41,12 +41,12 @@ pub fn main() void { for (hex_nums, ???) |hn, ???| { 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; } } - std.debug.print("Arrays match!\n", .{}); + print("Arrays match!\n", .{}); } // // You are perhaps wondering what happens if one of the two lists |
