process(fn)
Arranges the function fn
to be executed parallely. Return an object that represent the newly started process.
let p = process(^(cp) showln("server says: ", process_receive(cp)))
process_send(p, "hello")
//> server says: hello
process_close(p)