From 65226b5354b77679130073d96ec2d67458ce4b9b Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Fri, 30 Apr 2021 21:35:56 -0400 Subject: Added ex075 Quiz 8 --- build.zig | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 9581e17..f427b98 100644 --- a/build.zig +++ b/build.zig @@ -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. -- cgit v1.2.3-ZIG