summaryrefslogtreecommitdiff
path: root/tests/chain.apl
blob: af09a2b282ac76292c970ed49ca370c9040396b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
worker←{
	msg←{1 ⍵}recv ⍬
	⍵≡⍬: ⎕←'DONE'
	⎕←'Worker id ',(⍕⎕self),' (',(⎕self ⎕tasks 1),') got message: ',(⍕msg)
	⎕←'Forwarding from ',(⍕⎕self), ' to ',⍕⍵
	msg send ⍵
}
last←worker&'worker'⍣10⊢⍬
'Hello there' send last