aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-09 19:24:59 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-09 19:24:59 -0400
commite416e85143f2b3faa8f2e3b4618f0cc3f41b2aa6 (patch)
tree686c0081db8cdc8ec9a061f096a3d44aca8fb4ba /build.zig
parent0d7c14a4b0edfe07c4d81e592101009e4432286f (diff)
downloadziglings-e416e85143f2b3faa8f2e3b4618f0cc3f41b2aa6.tar.gz
ziglings-e416e85143f2b3faa8f2e3b4618f0cc3f41b2aa6.tar.bz2
ziglings-e416e85143f2b3faa8f2e3b4618f0cc3f41b2aa6.tar.xz
ziglings-e416e85143f2b3faa8f2e3b4618f0cc3f41b2aa6.zip
added ex062 loop expressions
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index fa27a1e..2cf7ba8 100644
--- a/build.zig
+++ b/build.zig
@@ -314,6 +314,10 @@ const exercises = [_]Exercise{
.main_file = "061_coercions.zig",
.output = "Letter: A",
},
+ .{
+ .main_file = "062_loop_expressions.zig",
+ .output = "Current language: Zig",
+ },
};
/// Check the zig version to make sure it can compile the examples properly.