aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/30_switch.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-15 19:32:00 -0500
committerGitHub <noreply@github.com>2021-02-15 19:32:00 -0500
commita2b6b68a255c2d050e4f53a5082c38ec810c1b24 (patch)
tree45f2eba30d72f43df60cd9b053ebaea5dfe11f18 /exercises/30_switch.zig
parent882a6b6198148673ec97c6e38443f8e2a6a6b576 (diff)
parentbbe93b1f12ae60258a6322e8ec2212fd072b777a (diff)
Merge pull request #22 from quexxon/apply-zig-fmt
Apply `zig fmt` to exercises and generate remaining patch files
Diffstat (limited to 'exercises/30_switch.zig')
-rw-r--r--exercises/30_switch.zig20
1 files changed, 9 insertions, 11 deletions
diff --git a/exercises/30_switch.zig b/exercises/30_switch.zig
index b10ad14..cb983f5 100644
--- a/exercises/30_switch.zig
+++ b/exercises/30_switch.zig
@@ -21,8 +21,6 @@
// alert();
// return GameError.TooManyPlayers;
// }
-//
-//
//
const std = @import("std");
@@ -31,15 +29,15 @@ pub fn main() void {
for (lang_chars) |c| {
switch (c) {
- 1 => std.debug.print("A", .{}),
- 2 => std.debug.print("B", .{}),
- 3 => std.debug.print("C", .{}),
- 4 => std.debug.print("D", .{}),
- 5 => std.debug.print("E", .{}),
- 6 => std.debug.print("F", .{}),
- 7 => std.debug.print("G", .{}),
- 8 => std.debug.print("H", .{}),
- 9 => std.debug.print("I", .{}),
+ 1 => std.debug.print("A", .{}),
+ 2 => std.debug.print("B", .{}),
+ 3 => std.debug.print("C", .{}),
+ 4 => std.debug.print("D", .{}),
+ 5 => std.debug.print("E", .{}),
+ 6 => std.debug.print("F", .{}),
+ 7 => std.debug.print("G", .{}),
+ 8 => std.debug.print("H", .{}),
+ 9 => std.debug.print("I", .{}),
10 => std.debug.print("J", .{}),
// ... we don't need everything in between ...
25 => std.debug.print("Y", .{}),