swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: 0c4fe78de438b1763d2779774bd5ad4ceb0afe8e authored by Valentin Churavy on 01 October 2023, 20:02:48 UTC
add attr to jlpgcstack_func
Tip revision: 0c4fe78
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