This commit is contained in:
Adam Millerchip 2022-01-02 19:02:06 +09:00
parent 78f538a19e
commit 22d56b2332
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ pub fn main() void {
// length... You've actually solved this problem before!
//
// Here's a big hint: do you remember how to take a slice?
const printable = ???;
const printable = foo.data[0..foo.length];
print("{s}\n", .{printable});
}