swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: 7be36380021510afcbc82a1deea76d42413b4206 authored by Oscar Smith on 07 February 2024, 18:14:51 UTC
Merge branch 'master' into sb/float-div
Tip revision: 7be3638
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