aboutsummaryrefslogtreecommitdiff
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
commit22ac3628a15737af8f59d1e3b1d38b74edc7f1b9 (patch)
treee5939c631227cd5b873b1fd12ac2262285f07305 /build.zig
parent71e43b0a5048212bae960332b3451ba2ee85d4e7 (diff)
downloadziglings-22ac3628a15737af8f59d1e3b1d38b74edc7f1b9.tar.gz
ziglings-22ac3628a15737af8f59d1e3b1d38b74edc7f1b9.tar.bz2
ziglings-22ac3628a15737af8f59d1e3b1d38b74edc7f1b9.tar.xz
ziglings-22ac3628a15737af8f59d1e3b1d38b74edc7f1b9.zip
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!",
},
};