mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-12 09:59:59 +00:00
changed the patch files that we can also use them with busybox for testing in Woodpecker
This commit is contained in:
@@ -1,20 +1,29 @@
|
||||
20,22c20,22
|
||||
< const base1: []u8 = scrambled[15..23];
|
||||
< const base2: []u8 = scrambled[6..10];
|
||||
< const base3: []u8 = scrambled[32..];
|
||||
---
|
||||
> const base1: []const u8 = scrambled[15..23];
|
||||
> const base2: []const u8 = scrambled[6..10];
|
||||
> const base3: []const u8 = scrambled[32..];
|
||||
25,27c25,27
|
||||
< const justice1: []u8 = scrambled[11..14];
|
||||
< const justice2: []u8 = scrambled[0..5];
|
||||
< const justice3: []u8 = scrambled[24..31];
|
||||
---
|
||||
> const justice1: []const u8 = scrambled[11..14];
|
||||
> const justice2: []const u8 = scrambled[0..5];
|
||||
> const justice3: []const u8 = scrambled[24..31];
|
||||
33c33
|
||||
< fn printPhrase(part1: []u8, part2: []u8, part3: []u8) void {
|
||||
---
|
||||
> fn printPhrase(part1: []const u8, part2: []const u8, part3: []const u8) void {
|
||||
--- exercises/053_slices2.zig 2023-10-03 22:15:22.122241138 +0200
|
||||
+++ answers/053_slices2.zig 2023-10-05 20:04:07.082767381 +0200
|
||||
@@ -17,19 +17,19 @@
|
||||
pub fn main() void {
|
||||
const scrambled = "great base for all your justice are belong to us";
|
||||
|
||||
- const base1: []u8 = scrambled[15..23];
|
||||
- const base2: []u8 = scrambled[6..10];
|
||||
- const base3: []u8 = scrambled[32..];
|
||||
+ const base1: []const u8 = scrambled[15..23];
|
||||
+ const base2: []const u8 = scrambled[6..10];
|
||||
+ const base3: []const u8 = scrambled[32..];
|
||||
printPhrase(base1, base2, base3);
|
||||
|
||||
- const justice1: []u8 = scrambled[11..14];
|
||||
- const justice2: []u8 = scrambled[0..5];
|
||||
- const justice3: []u8 = scrambled[24..31];
|
||||
+ const justice1: []const u8 = scrambled[11..14];
|
||||
+ const justice2: []const u8 = scrambled[0..5];
|
||||
+ const justice3: []const u8 = scrambled[24..31];
|
||||
printPhrase(justice1, justice2, justice3);
|
||||
|
||||
std.debug.print("\n", .{});
|
||||
}
|
||||
|
||||
-fn printPhrase(part1: []u8, part2: []u8, part3: []u8) void {
|
||||
+fn printPhrase(part1: []const u8, part2: []const u8, part3: []const u8) void {
|
||||
std.debug.print("'{s} {s} {s}.' ", .{ part1, part2, part3 });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user