aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/30_switch.zig
diff options
context:
space:
mode:
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", .{}),