aboutsummaryrefslogtreecommitdiff
path: root/exercises/052_slices.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-10 23:02:40 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-10 23:02:40 +0000
commit5257941f40554da3f8df074443a4c087dcff7004 (patch)
treeb55af272f52f961f8fa02468861de2c255d8a9e2 /exercises/052_slices.zig
parent0e447c7956410a993614f9337d6219e017722443 (diff)
downloadziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.gz
ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.bz2
ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.xz
ziglings-5257941f40554da3f8df074443a4c087dcff7004.zip
25-60 completemain
Diffstat (limited to 'exercises/052_slices.zig')
-rw-r--r--exercises/052_slices.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/052_slices.zig b/exercises/052_slices.zig
index af5930b..24dbb08 100644
--- a/exercises/052_slices.zig
+++ b/exercises/052_slices.zig
@@ -32,8 +32,8 @@ pub fn main() void {
var cards = [8]u8{ 'A', '4', 'K', '8', '5', '2', 'Q', 'J' };
// Please put the first 4 cards in hand1 and the rest in hand2.
- const hand1: []u8 = cards[???];
- const hand2: []u8 = cards[???];
+ const hand1: []u8 = cards[0..4];
+ const hand2: []u8 = cards[4..];
std.debug.print("Hand1: ", .{});
printHand(hand1);
@@ -43,7 +43,7 @@ pub fn main() void {
}
// Please lend this function a hand. A u8 slice hand, that is.
-fn printHand(hand: ???) void {
+fn printHand(hand: []u8) void {
for (hand) |h| {
std.debug.print("{u} ", .{h});
}