diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-06-17 14:10:16 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-06-17 14:10:16 +0200 |
| commit | bc96d06da4d3400f40babd1de0eb0e100d734273 (patch) | |
| tree | d93343ffda857f50e8acf2ad875552a2bb1e8292 /exercises/108_labeled_switch.zig | |
| parent | 451e1a373969f81fb63223e10b1d69ba7dac3523 (diff) | |
| parent | afaab2efca069cb4144d8bcb3a82ee042315ea6b (diff) | |
Merge branch 'main' into i278
Diffstat (limited to 'exercises/108_labeled_switch.zig')
| -rw-r--r-- | exercises/108_labeled_switch.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/108_labeled_switch.zig b/exercises/108_labeled_switch.zig index 9262c6f..897fcf5 100644 --- a/exercises/108_labeled_switch.zig +++ b/exercises/108_labeled_switch.zig @@ -19,10 +19,10 @@ // } // break; // } -// std.debug.print("This statement cannot be reached\n", .{}); +// std.debug.print("This statement cannot be reached\n", .{}); // } // -// By combining all we've learned so far, we can now proceed with a labeled switch +// By combining all we've learned so far, we can now proceed with a labeled switch. // // A labeled switch is some extra syntactic sugar, which comes with all sorts of // candy (performance benefits). Don't believe me? Directly to source https://github.com/ziglang/zig/pull/21367 |
