我安装了Julia studio 0.4.4,发现它不支持多行注释,#=...=#所以我想找到它正在运行的Julia版本.
在Matlab中,一种类型的命令ver不仅显示了matlab的版本号,还显示了所有安装的工具箱的版本号.
我用谷歌搜索了一段时间,但无法为朱莉娅找到类似的命令.朱莉娅有这样的命令吗?
julia> Version
ErrorException("Version not defined")
julia> ver
ErrorException("ver not defined")
julia> ver()
ErrorException("ver not defined")
julia> Version()
ErrorException("Version not defined")
Run Code Online (Sandbox Code Playgroud)
dam*_*ois 27
使用versioninfo命令:
从文档:
versioninfo([verbose::Bool])
Print information about the version of Julia in use. If the verbose argument
is true, detailed system information is shown as well.
Run Code Online (Sandbox Code Playgroud)