We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
geza$ lsc LiveScript 1.3.1 - use 'lsc --help' for more information ls> a = 1 1 ls> b = 1 1 ls> a + b = 3 4
the issue is that it's turning it into a + (b = 3) whereas this should actually be a syntax error
The text was updated successfully, but these errors were encountered:
This is valid. The assignment operator can be used anywhere in a expression.
Sorry, something went wrong.
Yeah, it seems correct to me.
No branches or pull requests
geza$ lsc
LiveScript 1.3.1 - use 'lsc --help' for more information
ls> a = 1
1
ls> b = 1
1
ls> a + b = 3
4
the issue is that it's turning it into a + (b = 3) whereas this should actually be a syntax error
The text was updated successfully, but these errors were encountered: