2012-08-28 13:11:15 -05:00
|
|
|
import pipes::{Port, Chan};
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-05-18 13:38:41 -05:00
|
|
|
/*
|
|
|
|
This is about the simplest program that can successfully send a
|
|
|
|
message.
|
|
|
|
*/
|
|
|
|
fn main() {
|
2012-07-25 16:05:06 -05:00
|
|
|
let (ch, po) = pipes::stream();
|
|
|
|
ch.send(42);
|
|
|
|
let r = po.recv();
|
2011-12-22 19:53:53 -06:00
|
|
|
log(error, r);
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|