aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/030_switch.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-12 18:59:46 -0500
committerDave Gauer <dave@ratfactor.com>2021-03-12 18:59:46 -0500
commit0956f1839fcaaa273353148da9e157a8f9690d2f (patch)
treed6c90700131d5b28e898881f13e2a05612e4703f /exercises/030_switch.zig
parent93eefe0f250bb76bfdd8e6bb784b6a9586517000 (diff)
"999 is enough for anybody" triple-zero padding (#18)
When I hit 999 exercises, I will finally have reached the ultimate state of soteriological release and no more exercises will be needed. The cycle will be complete. All that will be left is perfect quietude, freedom, and highest happiness.
Diffstat (limited to 'exercises/030_switch.zig')
-rw-r--r--exercises/030_switch.zig53
1 files changed, 53 insertions, 0 deletions
diff --git a/exercises/030_switch.zig b/exercises/030_switch.zig
new file mode 100644
index 0000000..cb983f5
--- /dev/null
+++ b/exercises/030_switch.zig
@@ -0,0 +1,53 @@
+//
+// The "switch" statement lets you match the possible values of an
+// expression and perform a different action for each.
+//
+// This switch:
+//
+// switch (players) {
+// 1 => startOnePlayerGame(),
+// 2 => startTwoPlayerGame(),
+// else => {
+// alert();
+// return GameError.TooManyPlayers;
+// }
+// }
+//
+// Is equivalent to this if/else:
+//
+// if (players == 1) startOnePlayerGame();
+// else if (players == 2) startTwoPlayerGame();
+// else {
+// alert();
+// return GameError.TooManyPlayers;
+// }
+//
+const std = @import("std");
+
+pub fn main() void {
+ const lang_chars = [_]u8{ 26, 9, 7, 42 };
+
+ 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", .{}),
+ 10 => std.debug.print("J", .{}),
+ // ... we don't need everything in between ...
+ 25 => std.debug.print("Y", .{}),
+ 26 => std.debug.print("Z", .{}),
+ // Switch statements must be "exhaustive" (there must be a
+ // match for every possible value). Please add an "else"
+ // to this switch to print a question mark "?" when c is
+ // not one of the existing matches.
+ }
+ }
+
+ std.debug.print("\n", .{});
+}