diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-02-27 19:43:31 +0100 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-02-27 19:43:31 +0100 |
| commit | 88510735e13f8c5cd7bbb2d08ba1cbfd407dca04 (patch) | |
| tree | 26b711143cd31e89d3a2489d2ac6ab562e899eea /exercises/013_while3.zig | |
| parent | 8c119bebdc66becac60e7ef035a993e422bd8972 (diff) | |
| parent | 07031c5daac4291e4d23599a944b84e6b434f9c2 (diff) | |
Merge branch 'main' into emphasize-for-loop-range
Diffstat (limited to 'exercises/013_while3.zig')
| -rw-r--r-- | exercises/013_while3.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/013_while3.zig b/exercises/013_while3.zig index 4cccf62..52d5ebd 100644 --- a/exercises/013_while3.zig +++ b/exercises/013_while3.zig @@ -11,8 +11,8 @@ // // } // -// The "continue expression" executes every time the loop restarts -// whether the "continue" statement happens or not. +// The "continue expression" executes every single time the loop restarts, +// even when a `continue` statement skips the rest of the loop body. // const std = @import("std"); |
