Merge pull request 'improve comment on continue expression behavior' (#369) from pebose/exercises:improve-013-while3-comment into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/369
This commit is contained in:
Chris Boesch 2026-02-27 12:49:58 +01:00
commit 2e4c7a2310

View File

@ -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");