/ SimMode / src / SimMode.jl
SimMode.jl
 1  module SimMode
 2  
 3  if get(ENV, "JULIA_NOPRECOMP", "") == "all"
 4      __init__() = begin
 5          include(joinpath(@__DIR__, "module.jl"))
 6      end
 7  else
 8      occursin(string(@__MODULE__), get(ENV, "JULIA_NOPRECOMP", "")) && __precompile__(false)
 9      include("module.jl")
10      include("precompile.jl")
11  end
12  
13  end