This PR: #443 changes exercises 071_comptime6 and 082_anonymous_structs3 such that expected solution involves iterating over both names and types sequences via for (seq_a, seq_b) |a, b|
inlinefor(field_names,field_types)|field_name,field_type|{
But, this is feature is taught in 103_for4.
Only range iterations for (seq_a, 0..) |a, index| are known at this stage.
This PR: https://codeberg.org/ziglings/exercises/pulls/443 changes exercises `071_comptime6` and `082_anonymous_structs3` such that expected solution involves iterating over both names and types sequences via `for (seq_a, seq_b) |a, b|`
```zig
inline for (field_names, field_types) |field_name, field_type| {
```
But, this is feature is taught in `103_for4`.
Only range iterations `for (seq_a, 0..) |a, index|` are known at this stage.