rust/src/test/run-pass/basic-2.rs

27 lines
383 B
Rust
Raw Normal View History

2010-08-09 08:53:37 -05:00
// -*- rust -*-
io fn a(chan[int] c) {
log "task a0";
log "task a1";
c <| 10;
}
io fn main() {
let port[int] p = port();
spawn a(chan(p));
spawn b(chan(p));
let int n = 0;
n <- p;
n <- p;
log "Finished.";
}
io fn b(chan[int] c) {
log "task b0";
log "task b1";
log "task b2";
log "task b2";
log "task b3";
c <| 10;
}