相关疑难解决方法(0)

如何在julia中导入自定义模块

我有一个我在这里写的模块:

# 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

27
推荐指数
4
解决办法
1万
查看次数

标签 统计

julia ×1