summaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-05 11:01:12 -0500
committerDave Gauer <dave@ratfactor.com>2021-03-05 11:01:12 -0500
commit4f9c8f57ba7da2106d624dae4b16d1aeff2769a5 (patch)
treeabfc52fc1d14afd1ebb03ac0a4a5273932aebfa4 /build.zig
parent28791f0cb8df075199862b1367e3ed3ede692fd7 (diff)
Add ex51 values
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 7892117..ee44d52 100644
--- a/build.zig
+++ b/build.zig
@@ -264,7 +264,10 @@ const exercises = [_]Exercise{
.main_file = "50_no_value.zig",
.output = "That is not dead which can eternal lie / And with strange aeons even death may die.",
},
- // 51 pass-by-value and const fn params
+ .{
+ .main_file = "51_values.zig",
+ .output = "1:false!. 2:true!. 3:true!. XP before:0, after:200.",
+ },
// 52 slices!
};