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
file X (note: not X.jl):
println("foo")
Inside a repl in the same directory
julia> using X foo Warning: requiring "X" did not define a corresponding module.
This means that we cannot have an executable named foo for a module named Foo which does using Foo inside it. Worse on case insensitive file systems.
foo
Foo
using Foo
The text was updated successfully, but these errors were encountered:
Also: #9007 #9079 #7256
Sorry, something went wrong.
5c48f08
No branches or pull requests
file X (note: not X.jl):
Inside a repl in the same directory
This means that we cannot have an executable named
foo
for a module namedFoo
which doesusing Foo
inside it. Worse on case insensitive file systems.The text was updated successfully, but these errors were encountered: