Running Julia Script through another Script

I have two scripts A.jl and B.jl, and want to create a script in A.jl that runs B.jl, if there is any idea, how can i do that ? In short, I want to run my julia script through another julia file.

include("B.jl") if you want to run in the same process, and run(`julia B.jl`) if you want to run in a separate process.

3 Likes