我的理解是,默认情况下,并行化包含在基本Julia安装中。nprocs()ERROR: UndefVarError: nprocs not defined [1] top-level scope at none:0
在任何Julia文档中,我都没有提到为了使用这些函数而需要包含的任何包。我在JuliaPro/Atom IDE中使用Julia版本1.0.5
origin_date = Date(2000, 01, 01)days_elapsed = today_date - origin_datejulia> import DatesERROR: UndefVarError: Date not defined [1] top-level scope at none:0
julia> t
Julia是动态类型的,某些错误只在执行过程中发生。例如: julia> function foo() 5foo (generic function with 1 method)
ERROR: UndefVarError: a not defined [1] foo() at ./REPL[1]:2
julia&