ex 058 grammaring harder

This commit is contained in:
Dave Gauer 2021-03-18 10:01:14 -04:00
parent 5f9d5ddeff
commit 4fdaab7f84

View file

@ -28,8 +28,8 @@ pub fn main() void {
// //
// A "string" in Zig is a pointer to an array of const u8 values // A "string" in Zig is a pointer to an array of const u8 values
// (or a slice of const u8 values, as we saw above). So, we could // (or a slice of const u8 values, as we saw above). So, we could
// treat a "many-item pointer" of const u8 a string as long as we // treat a "many-item pointer" of const u8 as a string as long as
// can CONVERT IT TO A SLICE. (Hint: we do know the length!) // we can CONVERT IT TO A SLICE. (Hint: we do know the length!)
// //
// Please fix this line so the print below statement can print it: // Please fix this line so the print below statement can print it:
const zen12_string: []const u8 = zen_manyptr; const zen12_string: []const u8 = zen_manyptr;