swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: d0e039392e734a569721b3280c32b2eafc7aad57 authored by Steven G. Johnson on 31 January 2020, 17:34:08 UTC
:ᵀ no longer parses
Tip revision: d0e0393
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