Distributed programming: Difference between revisions

m (→‎{{header|Ruby}}: Kill phantom category 'dRuby')
Line 604:
console.log(msg.toString())
})</lang>
 
=={{header|Mathematica}}==
The following sends a request for a random number to be generated on each of two nodes, these are then transmitted back to be assembled into an array with two elements. Omitting the first line, will cause the program to be run on all configured remote computers.
<lang Mathematica>LaunchKernels[2];
ParallelEvaluate[RandomReal[]]
</lang>
 
=={{header|Objective-C}}==
Anonymous user