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 particular, they are not parsed as word-boundaries when tokenizing, i.e. they require spaces around them. For example:
julia> a,b = 3,4; julia> a!=b true julia> a≠b ERROR: a≠b not defined julia> a>=b false julia> a≥b ERROR: a≥b not defined julia> a===b false julia> a≡b ERROR: a≡b not defined
The text was updated successfully, but these errors were encountered:
use unicode character categories to classify identifier characters
569fdb7
fixes #6797, fixes #5936
e039950
5aa2267
82e34b6
Successfully merging a pull request may close this issue.
In particular, they are not parsed as word-boundaries when tokenizing, i.e. they require spaces around them. For example:
The text was updated successfully, but these errors were encountered: