Distributed computing should be easy, like threading.
I propose:
function helloworld() {
print("Hello World")
outbox("done")
}
software {
if load(1) = "start"
offload helloworld()
else
onload()
end
print(inbox())
}
This will run helloworld on a different machine to the software which is run with the "start" argument.
Communication model is the same as threads, there might need to be a sort of select feature in I.
Distributed computing should be easy, like threading. I propose:
This will run helloworld on a different machine to the software which is run with the "start" argument. Communication model is the same as threads, there might need to be a sort of select feature in I.