This commit is contained in:
Adam Millerchip 2021-12-31 01:29:06 +09:00
parent 6149dbced4
commit ed0d752825
1 changed files with 1 additions and 1 deletions

View File

@ -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});