You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
I'm a newbie. Love the format() function and related. I haven't fully explored, but I think one point could be emphasized in the documentation: it is possible to use the dot syntax, as in format.(), to format a tuple, e.g.
I'm a newbie. Love the
format()
function and related. I haven't fully explored, but I think one point could be emphasized in the documentation: it is possible to use the dot syntax, as informat.()
, to format a tuple, e.g.It may be obvious to most, but it wasn't to me, so it took me a little while to figure it out.
Btw, it is easier to grab from the Juno console if you wrap the lot in
println
println(format.((1.2345, 6.789), precision=2))
("1.23","6.79")
The text was updated successfully, but these errors were encountered: