process


process(fn)
      

Arranges the function fn to be executed parallely. Return an object that represent the newly started process.

Examples:


let p = process(^(cp) showln("server says: ", process_receive(cp)))
process_send(p, "hello")
//> server says: hello
process_close(p)
      

Also see:

task


Core Module Index | Contents