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