diff --git a/exercises/005_arrays2.zig b/exercises/005_arrays2.zig index 57b1962..acbfafc 100644 --- a/exercises/005_arrays2.zig +++ b/exercises/005_arrays2.zig @@ -30,17 +30,23 @@ pub fn main() void { // Okay, that's all of the problems. Let's see the results. // // We could print these arrays with leet[0], leet[1],...but let's - // have a little preview of Zig "for" loops instead: + // have a little preview of Zig 'for' loops instead: + // + // for () |item| { } + // + // Don't worry, we'll cover looping properly in upcoming + // lessons. + // std.debug.print("LEET: ", .{}); - for (leet) |*n| { - std.debug.print("{}", .{n.*}); + for (leet) |n| { + std.debug.print("{}", .{n}); } std.debug.print(", Bits: ", .{}); - for (bit_pattern) |*n| { - std.debug.print("{}", .{n.*}); + for (bit_pattern) |n| { + std.debug.print("{}", .{n}); } std.debug.print("\n", .{});