summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 19:44:35 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 19:44:35 +0100
commitd5fdfe708c4ae22c4822a046c54d01f298ae0b11 (patch)
tree26b711143cd31e89d3a2489d2ac6ab562e899eea /build.zig
parent07031c5daac4291e4d23599a944b84e6b434f9c2 (diff)
parent88510735e13f8c5cd7bbb2d08ba1cbfd407dca04 (diff)
Merge pull request 'emphasize that the end number of a for-loop range is exclusive' (#366) from pebose/exercises:emphasize-for-loop-range into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/366
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index c3b2a43..1099135 100644
--- a/build.zig
+++ b/build.zig
@@ -1147,7 +1147,7 @@ const exercises = [_]Exercise{
},
.{
.main_file = "095_for3.zig",
- .output = "1 2 4 7 8 11 13 14 16 17 19",
+ .output = "1 2 4 7 8 11 13 14 16 17 19\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15",
},
.{
.main_file = "096_memory_allocation.zig",