Programmatically load packages

julia> for package in packages
         @eval using $(Symbol(package))
       end

you won’t need the Symbol() if it was a vector of Symbols in the first place.

3 Likes