diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-06-03 23:11:57 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-06-03 23:11:57 +0200 |
| commit | cabbef97e89f926b770ac0c363eda8d529b699a8 (patch) | |
| tree | 38b51bc7b06c163280ab657652ce1ea57602582f | |
| parent | fd764e90ab657f352af1440b6d9953edc113a5e5 (diff) | |
| parent | b1223f92edd6d488d491125dd6d415dc915707b4 (diff) | |
Merge pull request '108: Make pretty' (#275) from felixrabe/exercises:felixrabe-patch-6 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/275
| -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 |
