rust/src/test/run-pass/many.rs
2012-08-15 17:46:05 -07:00

28 lines
569 B
Rust

// -*- rust -*-
use std;
import task;
import comm;
fn sub(parent: comm::Chan<int>, id: int) {
if id == 0 {
comm::send(parent, 0);
} else {
let p = comm::port();
let ch = comm::chan(p);
let child = task::spawn(|| sub(ch, id - 1) );
let y = comm::recv(p);
comm::send(parent, y + 1);
}
}
fn main() {
let p = comm::port();
let ch = comm::chan(p);
let child = task::spawn(|| sub(ch, 200) );
let y = comm::recv(p);
debug!{"transmission complete"};
log(debug, y);
assert (y == 200);
}