diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-30 21:35:56 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-30 21:35:56 -0400 |
commit | 65226b5354b77679130073d96ec2d67458ce4b9b (patch) | |
tree | b729e7741c8b67b4deebd10c2ba3603345e49eda /build.zig | |
parent | 14480323a67c8c46b875761737df8fe652aa5464 (diff) | |
download | ziglings-65226b5354b77679130073d96ec2d67458ce4b9b.tar.gz ziglings-65226b5354b77679130073d96ec2d67458ce4b9b.tar.bz2 ziglings-65226b5354b77679130073d96ec2d67458ce4b9b.tar.xz ziglings-65226b5354b77679130073d96ec2d67458ce4b9b.zip |
Added ex075 Quiz 8
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -370,6 +370,15 @@ const exercises = [_]Exercise{ .main_file = "073_comptime8.zig", .output = "My llama value is 25.", }, + .{ + .main_file = "074_comptime9.zig", + .output = "My llama value is 2.", + }, + .{ + .main_file = "075_quiz8.zig", + .output = "Archer's Point--2->Bridge--1->Dogwood Grove--3->Cottage--2->East Pond--1->Fox Pond", + .hint = "Roll up those sleeves. You get to WRITE some code for this one.", + }, }; /// Check the zig version to make sure it can compile the examples properly. |