summaryrefslogtreecommitdiff
path: root/tests/chain.apl
blob: 9b9ba332d69e7bd5d1ebfa43f8452aaa855e5765 (plain) (blame)
1
2
3
4
5
6
7
8
9
worker←{
	(from 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