You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base.:*(a::String,b::String) = string(a,"*",b)
and not Base.:+(a::String,b::String) = string(a,"+",b)
or Base.:/(a::String,b::String) = string(a,"/",b)
causes
the REPL still works perfectly fine, but running any line directly in the script causes the above to appear again.
With an active project:
Base.:*(a::String,b::String) = string(a,"*",b)
and not Base.:+(a::String,b::String) = string(a,"+",b)
or Base.:/(a::String,b::String) = string(a,"/",b)
causes
once again the REPL still works perfectly fine, but running any line directly in the script causes the above to appear again.
Thanks!
The text was updated successfully, but these errors were encountered:
Details
Steps to reproduce
Base.:*(a::String,b::String) = string(a,"*",b)
and not
Base.:+(a::String,b::String) = string(a,"+",b)
or
Base.:/(a::String,b::String) = string(a,"/",b)
causes
the REPL still works perfectly fine, but running any line directly in the script causes the above to appear again.
With an active project:
Base.:*(a::String,b::String) = string(a,"*",b)
and not
Base.:+(a::String,b::String) = string(a,"+",b)
or
Base.:/(a::String,b::String) = string(a,"/",b)
causes
once again the REPL still works perfectly fine, but running any line directly in the script causes the above to appear again.
Thanks!
The text was updated successfully, but these errors were encountered: