how to find version number of Julia? Is there a ver() command?
Use the versioninfo
command:
From the documentation:
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.
Just entering out the constant VERSION
would also display the version number.
julia> VERSION
v"0.4.0"