mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-12 13:00:47 -05:00
10 lines
400 B
Diff
10 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});
|