summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-01-18 19:44:08 -0500
committerDave Gauer <dave@ratfactor.com>2021-01-18 19:44:08 -0500
commit7e123933b915f886da8a7bba1690588a8a04ac93 (patch)
treef1ac6b98bdb57ed0f5bbd416ef592d2662fd3c7f
parent2bda44bc586ee16dd3fe0bce1ead9372a83a71f3 (diff)
Ex 16 oops, forgot to unfix it. :-)
-rw-r--r--16_for2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/16_for2.zig b/16_for2.zig
index 914d047..4b01b86 100644
--- a/16_for2.zig
+++ b/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;
}