Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Commercial-quality REBOL programmers needed

From: reffy:ulrich at: 16-Aug-2002 20:56

> Dick wrote: > > Does the evaluation of the expression: a + b > > > > Happen synchronously, or asynchronously > > > > Are the values of 'a' and 'b' currently exclusive to the process that can > perform the '+' operation or are they in 'shared' mode ? > > Rebol is single threaded. Your question is pretty much meaningless. > > Andrew Martin
For a moment lets assume there are 4 Rebol processes running on different machines. On my process/machine4 I want to add the value of a/process/machine1 and b/process/machine2 , and I want the operation to occur on process/machine3, with the result coming back to me on process/machine4. Can one refer to the value of a variable on a different machine ? Dick