aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 22ee5d4..9581e17 100644
--- a/build.zig
+++ b/build.zig
@@ -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.