You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ziglings/patches/patches/031_switch2.patch

11 lines
400 B
Diff

--- exercises/031_switch2.zig 2023-10-03 22:15:22.122241138 +0200
+++ answers/031_switch2.zig 2023-10-05 20:04:06.979432113 +0200
@@ -31,6 +31,7 @@
26 => 'Z',
// As in the last exercise, please add the 'else' clause
// and this time, have it return an exclamation mark '!'.
+ else => '!',
};
std.debug.print("{c}", .{real_char});