mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-14 07:51:12 +03:00
9 lines
199 B
Plaintext
9 lines
199 B
Plaintext
|
|
do Remote
|
|
c := Remote.channel;
|
|
r := Remote.receive-async c (Duration.seconds 5);
|
|
Remote.fork (Remote.send c (Debug.watch "sent" 42));
|
|
-- Remote.send c 42; -- (Debug.watch "sent" 42);
|
|
r;;
|
|
|