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

25 lines
377 B
Rust
Raw Normal View History

2010-08-09 08:53:37 -05:00
// -*- rust -*-
io fn a(chan[int] c) {
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 b3";
// log "task b4";
// log "task b5";
c <| 10;
}