swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: 000811b85226082f6396b1a22cd68a05a872488e authored by Jishnu Bhattacharya on 23 March 2024, 13:18:34 UTC
Disambiguate range-number broadcast ops by adding indirection
Tip revision: 000811b
LocalModule.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

module LocalModule

using Distributed
export myapp

function myapp()
    p = addprocs(1)
    @everywhere p println("Taking over the world...")
    rmprocs(p)
    nothing
end

end
back to top