buzz
buzz copied to clipboard
`const` list, map etc.
Right now this:
const list = [1,2,3];
Prevents any assignment to list but does not prevent modifications to the actual list.
We already have const objects do we can introduce the same for lists and maps:
var list = const [1,2,3]; | The variable can change but not the list
var map = const {"one": 1};