12 lines
226 B
Julia
12 lines
226 B
Julia
# This file is a part of Julia. License is MIT: https://julialang.org/license
|
|
|
|
include("ZMQCM.jl")
|
|
|
|
# @spawn run(`julia broker.jl`)
|
|
|
|
start_master(parse(Int,ARGS[1]))
|
|
|
|
resp = pmap(x -> myid() *2, [1:nworkers()])
|
|
|
|
println(resp)
|