diff options
author | Adam Millerchip <adam@millerchip.net> | 2021-12-26 13:24:01 +0900 |
---|---|---|
committer | Adam Millerchip <adam@millerchip.net> | 2022-01-01 02:20:26 +0900 |
commit | 669d4f7337d43628fd031888d9dc46d22289fcdf (patch) | |
tree | 15167bd3007c96b4cff06955755b1459d0d184d0 /exercises/063_labels.zig | |
parent | ef9bdb13820d0e113673ce0565f4dbd5960b2d9f (diff) | |
download | ziglings-669d4f7337d43628fd031888d9dc46d22289fcdf.tar.gz ziglings-669d4f7337d43628fd031888d9dc46d22289fcdf.tar.bz2 ziglings-669d4f7337d43628fd031888d9dc46d22289fcdf.tar.xz ziglings-669d4f7337d43628fd031888d9dc46d22289fcdf.zip |
use const for variables that are never modified
Diffstat (limited to 'exercises/063_labels.zig')
-rw-r--r-- | exercises/063_labels.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/063_labels.zig b/exercises/063_labels.zig index cdde229..f82ea6d 100644 --- a/exercises/063_labels.zig +++ b/exercises/063_labels.zig @@ -103,7 +103,7 @@ pub fn main() void { const wanted_ingredients = [_]u8{ 0, 3 }; // Chili, Cheese // Look at each Food on the menu... - var meal = food_loop: for (menu) |food| { + const meal = food_loop: for (menu) |food| { // Now look at each required ingredient for the Food... for (food.requires) |required, required_ingredient| { @@ -115,7 +115,7 @@ pub fn main() void { // (Remember that want_it will be the index number of // the ingredient based on its position in the // required ingredient list for each food.) - var found = for (wanted_ingredients) |want_it| { + const found = for (wanted_ingredients) |want_it| { if (required_ingredient == want_it) break true; } else false; |