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/067_comptime2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/067_comptime2.zig') diff --git a/exercises/067_comptime2.zig b/exercises/067_comptime2.zig index e212263..da27d57 100644 --- a/exercises/067_comptime2.zig +++ b/exercises/067_comptime2.zig @@ -36,7 +36,7 @@ pub fn main() void { // In this contrived example, we've decided to allocate some // arrays using a variable count! But something's missing... // - var count = 0; + comptime var count = 0; count += 1; const a1: [count]u8 = @splat('A'); -- cgit v1.2.3