From 6c08d0390537d47f790ee7d5fef9fbdef790125b Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Wed, 12 Apr 2023 15:44:12 +0200 Subject: [PATCH] added first exercise for bit manipulation --- build.zig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.zig b/build.zig index 84535d1..176b080 100644 --- a/build.zig +++ b/build.zig @@ -504,6 +504,10 @@ const exercises = [_]Exercise{ .main_file = "096_memory_allocation.zig", .output = "Running Average: 0.30 0.25 0.20 0.18 0.22", }, + .{ + .main_file = "097_bit_manipulation.zig", + .output = "x = 0; y = 1", + }, .{ .main_file = "999_the_end.zig", .output = "\nThis is the end for now!\nWe hope you had fun and were able to learn a lot, so visit us again when the next exercises are available.",