λ

3.2: Channels

Channels are a typed conduit through which you can send and receive values with the channel send and recv functions.

Note that send is a blocking operation. It will not return until another thread attempts to recv.

(* examples/chan.sml *)