diff options
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -265,7 +265,7 @@ pub fn build(b: *Build) !void { const progress_file_size = try progress_file.length(io); - var gpa = std.heap.GeneralPurposeAllocator(.{}){}; + var gpa = std.heap.DebugAllocator(.{}){}; defer _ = gpa.deinit(); const allocator = gpa.allocator(); const contents = try allocator.alloc(u8, progress_file_size); @@ -1309,6 +1309,14 @@ const exercises = [_]Exercise{ \\= 0110 }, .{ + .main_file = "111_packed.zig", + .output = "", + }, + .{ + .main_file = "112_packed2.zig", + .output = "", + }, + .{ .main_file = "999_the_end.zig", .output = \\ |
