This commit is contained in:
Adam Millerchip 2021-12-25 20:54:18 +09:00
parent 441baddcb7
commit c86a119d14
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,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, ???| {
for (bits) |bit, i| {
// Note that we convert the usize i to a u32 with
// @intCast(), a builtin function just like @import().
// We'll learn about these properly in a later exercise.