diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-02-09 18:36:57 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-02-09 18:36:57 -0500 |
commit | 55ad7c32f2d534b1fbd438204d21738f958c51a5 (patch) | |
tree | 16be4b53193105a759b3eec25be5e664d41c428d /30_switch.zig | |
parent | cf0920de31e9b5f3c5ba6de19a1b4c8d0c58b907 (diff) | |
download | ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.tar.gz ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.tar.bz2 ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.tar.xz ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.zip |
Moved exercises to exercises because exercises
Diffstat (limited to '30_switch.zig')
-rw-r--r-- | 30_switch.zig | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/30_switch.zig b/30_switch.zig deleted file mode 100644 index b10ad14..0000000 --- a/30_switch.zig +++ /dev/null @@ -1,55 +0,0 @@ -// -// 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", .{}); -} |