我有一个我在这里写的模块:
# Hello.jl
module Hello
function foo
return 1
end
end
Run Code Online (Sandbox Code Playgroud)
和
# Main.jl
using Hello
foo()
Run Code Online (Sandbox Code Playgroud)
当我运行Main
模块时:
$ julia ./Main.jl
Run Code Online (Sandbox Code Playgroud)
我收到此错误:
ERROR: LoadError: ArgumentError: Hello not found in path
in require at ./loading.jl:249
in include at ./boot.jl:261
in include_from_node1 at ./loading.jl:320
in process_options at ./client.jl:280
in _start at ./client.jl:378
while loading /Main.jl, in expression starting on line 1
Run Code Online (Sandbox Code Playgroud) julia ×1