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
Surprised to find the following doesn't work:
julia> 2√2 ERROR: syntax: extra token "√" after end of expression
(while 2sqrt(2) does).
2sqrt(2)
The text was updated successfully, but these errors were encountered:
I have futher tested in julia 1.5.4 (and very recent version from git repository).
julia> f(x) = √x f (generic function with 1 method) julia> 2f(2) 2.82842712474619032
julia> √(2) 1.4142135623730951 julia> 2√(2) ERROR: syntax: extra token "√" after end of expression Stacktrace: [1] top-level scope at none:1
I think parser do not treat "√" as normal function and that's the problem
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Surprised to find the following doesn't work:
(while
2sqrt(2)
does).The text was updated successfully, but these errors were encountered: