Exchanges.jl
1 module Exchanges 2 3 if get(ENV, "JULIA_NOPRECOMP", "") == "all" 4 __init__() = begin 5 include(joinpath(@__DIR__, "module.jl")) 6 @eval _doinit() 7 end 8 else 9 occursin(string(@__MODULE__), get(ENV, "JULIA_NOPRECOMP", "")) && __precompile__(false) 10 include("module.jl") 11 __init__() = _doinit() 12 if occursin(string(@__MODULE__), get(ENV, "JULIA_PRECOMP", "")) 13 include("precompile.jl") 14 end 15 end 16 17 end # module Exchanges