From 5257941f40554da3f8df074443a4c087dcff7004 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sat, 10 Dec 2022 23:02:40 +0000 Subject: 25-60 complete --- exercises/054_manypointers.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/054_manypointers.zig') diff --git a/exercises/054_manypointers.zig b/exercises/054_manypointers.zig index 695b55e..b6e39f2 100644 --- a/exercises/054_manypointers.zig +++ b/exercises/054_manypointers.zig @@ -32,7 +32,7 @@ pub fn main() void { // we can CONVERT IT TO A SLICE. (Hint: we do know the length!) // // Please fix this line so the print statement below can print it: - const zen12_string: []const u8 = zen_manyptr; + const zen12_string: []const u8 = zen_manyptr[0..21]; // Here's the moment of truth! std.debug.print("{s}\n", .{zen12_string}); -- cgit v1.2.3-ZIG