changed the patch files that we can also use them with busybox for testing in Woodpecker

This commit is contained in:
Chris Boesch
2023-10-05 20:18:04 +02:00
parent 992323ac6c
commit 7491e3df91
109 changed files with 1606 additions and 770 deletions
+10 -2
View File
@@ -1,2 +1,10 @@
48a49
> else => std.debug.print("?", .{}),
--- exercises/030_switch.zig 2023-10-03 22:15:22.122241138 +0200
+++ answers/030_switch.zig 2023-10-05 20:04:06.976098717 +0200
@@ -46,6 +46,7 @@
// 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.
+ else => std.debug.print("?", .{}),
}
}