Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

const list, map etc. #312

Open
giann opened this issue Sep 3, 2024 · 0 comments
Open

const list, map etc. #312

giann opened this issue Sep 3, 2024 · 0 comments
Labels
language Issue related to the language
Milestone

Comments

@giann
Copy link
Collaborator

giann commented Sep 3, 2024

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};
@giann giann added the language Issue related to the language label Sep 3, 2024
@giann giann added this to the 0.5.0 milestone Sep 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
language Issue related to the language
Projects
None yet
Development

No branches or pull requests

1 participant