Skip to content

NTimmons/ImportAll.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ImportAll.jl

Build Statuscodecov

The ImportAll.jl package provides the @importall macro to replace the importall command from Julia 0.6, which was removed in Julia 1.0.

Tutorial

using ImportAll
@importall(Base)

This will import every function in Base.

This is generally not a good thing to do but is sometimes necessary.