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
We experience this in Oscar.jl (cf. oscar-system/Oscar.jl#4402 (comment))
Try pasting the full code block into the REPL:
julia> x = 1 # hello 1
If you paste this in 1.11 it looks exactly like here, in 1.12-nightly (08d3c70) and nightly (f6e2b98) it changes to:
julia> x = 1 1
cc @benlorenz @c42f
The text was updated successfully, but these errors were encountered:
It will also ignore all code following a comment (outside of arrays/tuples/blocks), pasting this
julia> x = 1 #hello y = 2
will just print:
and y is not assigned.
y
For 1.11 and 1.10 it prints:
julia> x = 1 #hello 1
But y is also ignored.
Sorry, something went wrong.
No branches or pull requests
We experience this in Oscar.jl (cf. oscar-system/Oscar.jl#4402 (comment))
Try pasting the full code block into the REPL:
If you paste this in 1.11 it looks exactly like here, in 1.12-nightly (08d3c70) and nightly (f6e2b98) it changes to:
cc @benlorenz @c42f
The text was updated successfully, but these errors were encountered: