diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -268,7 +268,7 @@ const exercises = [_]Exercise{ .{ .main_file = "049_quiz6.zig", .output = "A B C Cv Bv Av", - .hint = "Now you're writting Zig!", + .hint = "Now you're writing Zig!", }, .{ .main_file = "050_no_value.zig", @@ -366,6 +366,10 @@ const exercises = [_]Exercise{ .main_file = "072_comptime7.zig", .output = "26", }, + .{ + .main_file = "073_comptime8.zig", + .output = "My llama value is 25.", + }, }; /// Check the zig version to make sure it can compile the examples properly. |