I am new to julia 1.7.2. I found on julialang.org about @sprintf. I try to show a number 45 as: 00045
a = @sprintf "%05i" 45 # I get: @sprintf not defined
a = Printf.@sprintf "%05i" 45 # I get: Printf not defined
What is missing in this 1 line program? Thanks