I'm trying to use the time() function within string interpolation, but it's not producing the desired result:
julia> time() 1.391893797590157e9 julia> "$(time())" "1.391893808023869e9" How do I get the float representation?
I'm trying to use the time() function within string interpolation, but it's not producing the desired result:
julia> time() 1.391893797590157e9 julia> "$(time())" "1.391893808023869e9" How do I get the float representation?