/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/embedding/LocalModule.jl
15 строк
258 B
Jameson Nash
loading: make __precompile__ the default (#26991)
31 июл 2018, 16:20
Не верифицирован
31 июл 2018, 16:20
6026374
Код
Авторство
О чём код?
# 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