summaryrefslogtreecommitdiff
path: root/exercises/100_for4.zig
diff options
context:
space:
mode:
authorZorgatone <zorgatone@gmail.com>2025-01-07 15:21:36 +0000
committerZorgatone <zorgatone@gmail.com>2025-01-07 15:21:36 +0000
commitc2dcaf309953cfa89947e359db93c2c2b13f19ba (patch)
tree73120d4132bb6ae06c7dfbd597820a3698d95ebc /exercises/100_for4.zig
parent468e3d7eed7cfbb68067afb34593dbc1109396d7 (diff)
Use print alias in exercise 100_for4.zig
Diffstat (limited to 'exercises/100_for4.zig')
-rw-r--r--exercises/100_for4.zig4
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