From bdfe3df2947f8787c8a4ef8c534f6a8932e13871 Mon Sep 17 00:00:00 2001 From: Ibrahim Muftee Date: Mon, 29 Jun 2026 15:11:40 -0500 Subject: feat: begin solving exercises --- exercises/073_comptime8.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/073_comptime8.zig') diff --git a/exercises/073_comptime8.zig b/exercises/073_comptime8.zig index fe1f8ea..1baf179 100644 --- a/exercises/073_comptime8.zig +++ b/exercises/073_comptime8.zig @@ -32,7 +32,7 @@ const llamas = [llama_count]u32{ 5, 10, 15, 20, 25 }; pub fn main() void { // We meant to fetch the last llama. Please fix this simple // mistake so the assertion no longer fails. - const my_llama = getLlama(5); + const my_llama = comptime getLlama(4); print("My llama value is {}.\n", .{my_llama}); } -- cgit v1.2.3