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
In Erlang, the pattern using bound variables work as like constant pattern. For example:
X = 1, case 123 of X -> X + 1 end.
↓
** exception error: no case clause matching 123
For this, we must consider the second binding of a already bound variable.
The case of shadowing variables must also be considered, but it is a different PR #135.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In Erlang, the pattern using bound variables work as like constant pattern.
For example:
↓
** exception error: no case clause matching 123
For this, we must consider the second binding of a already bound variable.
The case of shadowing variables must also be considered, but it is a different PR #135.
The text was updated successfully, but these errors were encountered: