2011-05-18 13:38:41 -05:00
|
|
|
/*
|
|
|
|
This is about the simplest program that can successfully send a
|
|
|
|
message.
|
|
|
|
*/
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let port[int] po = port();
|
|
|
|
let chan[int] ch = chan(po);
|
|
|
|
|
|
|
|
ch <| 42;
|
|
|
|
|
2011-05-27 13:59:19 -05:00
|
|
|
auto r; po |> r;
|
2011-05-18 13:38:41 -05:00
|
|
|
|
|
|
|
log_err r;
|
|
|
|
}
|