summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-05-08 18:51:08 -0400
committerDave Gauer <dave@ratfactor.com>2021-05-08 18:51:08 -0400
commitd4f5684450e8b4c7ed924399e71515758420d5bd (patch)
treee5939c631227cd5b873b1fd12ac2262285f07305 /build.zig
parent831ee03e321e78cda28a7d164e5cd5fb4e2244af (diff)
Fix 076, add 077,078 sentinels and many-item pointers
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig10
1 files changed, 9 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 2489e2a..391da47 100644
--- a/build.zig
+++ b/build.zig
@@ -381,7 +381,15 @@ const exercises = [_]Exercise{
},
.{
.main_file = "076_sentinels.zig",
- .output = "Array:123056. Many-pointer:123.",
+ .output = "Array:123056. Many-item pointer:123.",
+ },
+ .{
+ .main_file = "077_sentinels2.zig",
+ .output = "Weird Data!",
+ },
+ .{
+ .main_file = "078_sentinels3.zig",
+ .output = "Weird Data!",
},
};