diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-05-08 18:51:08 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-05-08 18:51:08 -0400 |
commit | 22ac3628a15737af8f59d1e3b1d38b74edc7f1b9 (patch) | |
tree | e5939c631227cd5b873b1fd12ac2262285f07305 /build.zig | |
parent | 71e43b0a5048212bae960332b3451ba2ee85d4e7 (diff) | |
download | ziglings-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.zig | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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!", }, }; |