Using Let block

No that doesn’t do anything. If you want a new b inside the let block, put it on the first line of the let block

julia> let b = b
           println(b)
       end
5
8 Likes