aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-10 20:26:17 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-10 20:26:17 -0400
commit838cb43f2567769ed726ebd0c2a941394ff7ebe8 (patch)
tree4801ec9096105c258c435412790456611d28c088 /build.zig
parent0f28e58eea540af31909e67c312e8fc67e8b0bc0 (diff)
added ex064 builtins
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index d8501fc..ebc6e7c 100644
--- a/build.zig
+++ b/build.zig
@@ -322,6 +322,10 @@ const exercises = [_]Exercise{
.main_file = "063_labels.zig",
.output = "Enjoy your Cheesy Chili!",
},
+ .{
+ .main_file = "064_builtins.zig",
+ .output = "1101 + 0101 = 0010 (true). Furthermore, 11110000 backwards is 00001111.",
+ },
};
/// Check the zig version to make sure it can compile the examples properly.