Browse Source

Ex 16 oops, forgot to unfix it. :-)

Dave Gauer 4 years ago
parent
commit
7e123933b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      16_for2.zig

+ 1 - 1
16_for2.zig

@@ -18,7 +18,7 @@ pub fn main() void {
     // the value of the place as a power of two for each bit. See if
     // you can figure out the missing piece:
     //
-    for (bits) |bit, i| {
+    for (bits) |bit, ???| {
         var place_value = std.math.pow(u32, 2, @intCast(u32, i));
         value += place_value * bit;
     }