2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2011-07-12 17:27:17 -05:00
|
|
|
|
2012-08-28 13:11:15 -05:00
|
|
|
fn start(c: pipes::Chan<pipes::Chan<int>>) {
|
2012-07-25 16:05:06 -05:00
|
|
|
let (ch, p) = pipes::stream();
|
|
|
|
c.send(ch);
|
2011-08-06 12:07:39 -05:00
|
|
|
}
|
2010-08-11 17:05:33 -05:00
|
|
|
|
2011-04-19 15:35:49 -05:00
|
|
|
fn main() {
|
2012-07-25 16:05:06 -05:00
|
|
|
let (ch, p) = pipes::stream();
|
2012-06-30 18:19:07 -05:00
|
|
|
let child = task::spawn(|| start(ch) );
|
2012-07-25 16:05:06 -05:00
|
|
|
let c = p.recv();
|
2011-08-06 12:07:39 -05:00
|
|
|
}
|