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
.
Now:
julia> 10.^(1:5) ERROR: ParseError: # Error @ REPL[1]:1:1 10.^(1:5) └─┘ ── ambiguous `.` syntax; add whitespace to clarify (eg `1.+2` might be `1.0+2` or `1 .+ 2`)
Would be nice and immediately understandable to show the actual code a user typed – instead of some random example:
julia> 10.^(1:5) ERROR: ParseError: # Error @ REPL[1]:1:1 10.^(1:5) └─┘ ── ambiguous `.` syntax, `10.^(1:5)` might be `10. ^ (1:5)` or `10 .^ (1:5)`; add whitespace to clarify
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now:
Would be nice and immediately understandable to show the actual code a user typed – instead of some random example:
The text was updated successfully, but these errors were encountered: