see https://github.com/JuliaLang/Compat.jl
On Monday, March 30, 2015 at 6:53:30 AM UTC-7, Abel Soares Siqueira wrote: > > Hi, > > I have this code: > > push!(DL_LOAD_PATH,".") > > But the master moved DL_LOAD_PATH to Libdl. > I want my code to work on release-0.3 and master, so I changed it to this: > > try > push!(DL_LOAD_PATH,".") > catch > push!(Libdl.DL_LOAD_PATH,".") > end > > Is there a better option? > > Best regards, > Abel >
