swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: d7b6f14ed85a8b91f7376b5aa84f43e3274075e4 authored by KristofferC on 27 June 2020, 07:45:55 UTC
tweaks to new Stacktrace printing
Tip revision: d7b6f14
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