Introduced mut keyword to give the developers the option to declare a const mut array which would be a constant reference to a mutable array (the variable can't be reassigned). That feature doesn't really make sense since the pointer will change when you change the first element anyway.
Introduced
mut
keyword to give the developers the option to declare aconst mut
array which would be a constant reference to a mutable array (the variable can't be reassigned). That feature doesn't really make sense since the pointer will change when you change the first element anyway.