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

Allow bare (let-free) assignments. #13

Closed
skx opened this issue Aug 3, 2018 · 0 comments
Closed

Allow bare (let-free) assignments. #13

skx opened this issue Aug 3, 2018 · 0 comments
Assignees

Comments

@skx
Copy link
Owner

skx commented Aug 3, 2018

This program works:

   let x = 10;
   let x = x * 10;

However this does not:

    let x = 10;
    x = x * 10;

We should allow bare (let-free assignments).

@skx skx self-assigned this Aug 3, 2018
@skx skx closed this as completed in 486e459 Aug 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant