On Wednesday, December 31, 2014 7:03:34 AM UTC-5, Andreas Lobinger wrote:
>
> What is the recommended way to get a julia major/minor version number (i 
> need to check <> v.0.4)? Just parse Base.VERSION?
>
>
Within Julia:

*julia> *
*VERSION**v"0.4.0-dev+2340"*

*julia> *
*VERSION.minor**4*

 Also, currently, in dev these are nice for embedding but have not been 
back-ported yet.

DLLEXPORT extern int jl_ver_major(void);
DLLEXPORT extern int jl_ver_minor(void);
DLLEXPORT extern int jl_ver_patch(void);
DLLEXPORT extern int jl_ver_is_release(void);
DLLEXPORT extern const char* jl_ver_string(void);



Reply via email to