diff options
author | glenda <glenda@cirno> | 2022-09-14 06:03:21 +0000 |
---|---|---|
committer | glenda <glenda@cirno> | 2022-09-14 06:03:21 +0000 |
commit | 2c2af66200badebe076570038daf4cacf47a1281 (patch) | |
tree | 14e14103298564fe17da7fbd2ce85f5e4325cf27 | |
parent | b7e3d0927fe0821e919ccc4a66ef149bddcc20de (diff) |
update demo to new ⎕threads numbers
-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 |