Problem with copy/paste from clipboard containting comment line in Julia

Viewed 129

copy and paste lines from clipboard which includes a comment line causes problem for the subsequence line (in julia REPL), MWE:

copy and paste the following code is ok:

julia> 1+1
julia> 2+2

but this isn't

julia> 1+1
julia> # comment
julia> 2+2
0 Answers
Related