ex51 word crimes solved

This commit is contained in:
Dave Gauer 2021-03-05 14:07:07 -05:00
parent f2867eab1b
commit 7573ea4843

View file

@ -141,8 +141,8 @@ pub fn main() void {
// NOTE: // NOTE:
// //
// If we tried to do this with a *const Character pointer, // If we tried to do this with a *const Character pointer,
// that would NOT work because that makes the data we would // that would NOT work and we would get a compiler error
// get a compiler error because the VALUE becomes immutable! // because the VALUE becomes immutable!
// //
// Moving along... // Moving along...
// //