swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: ad9e2cf778bcfb32c38336013425c26bcb0ec741 authored by Kristoffer on 21 November 2022, 10:48:17 UTC
avoid splatting large tuples info `afoldl`
Tip revision: ad9e2cf
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