my ziglings
0

Configure Feed

Select the types of activity you want to include in your feed.

improve comment on continue expression behavior

Paul Ebose (Feb 27, 2026, 4:07 AM +0100) 93aa733d 3ecaa342

+2 -2
+2 -2
exercises/013_while3.zig
··· 11 11 // 12 12 // } 13 13 // 14 - // The "continue expression" executes every time the loop restarts 15 - // whether the "continue" statement happens or not. 14 + // The "continue expression" executes every single time the loop restarts, 15 + // even when a `continue` statement skips the rest of the loop body. 16 16 // 17 17 const std = @import("std"); 18 18