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/032_unreachable.patch

11 lines
339 B
Diff

--- exercises/032_unreachable.zig 2023-10-03 22:15:22.122241138 +0200
+++ answers/032_unreachable.zig 2023-10-05 20:04:06.986098904 +0200
@@ -35,6 +35,7 @@
3 => {
current_value *= current_value;
},
+ else => unreachable,
}
std.debug.print("{} ", .{current_value});