How could the hi variable of second.jl be used in first.jl knowing that an include is made in second.jl over first.jl
Example
first.jl
any = "$(hi)" # hi is undefined
println()
second.jl
hi = "hola" # variable for use in first.jl
include("first.jl")