diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/doubleup.apl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/doubleup.apl b/demos/doubleup.apl index 0206528..d144f8f 100644 --- a/demos/doubleup.apl +++ b/demos/doubleup.apl @@ -9,10 +9,10 @@ f←{ id←f&'double up'⊢⍬ ⍝ Check it's status (id, name, mails in mailbox) -id ⎕threads 0 1 4 +id ⎕threads 0 1 2 ⍝ Check our own status -⎕self ⎕threads 0 1 4 +⎕self ⎕threads 0 1 2 ⍝ Send a few messages to our own mailbox 'hello'⍈⎕self @@ -25,7 +25,7 @@ id ⎕threads 0 1 4 'last one'⍈⎕self ⍝ Check our own status again -⎕self ⎕threads 0 1 4 +⎕self ⎕threads 0 1 2 ⍝ We now have a few messages, but we want a specific one.. ⍝ That is, the one where the sender = id |