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

30 lines
521 B
Rust
Raw Normal View History

2010-08-09 06:53:37 -07:00
// -*- rust -*-
use std;
import std::comm;
import std::comm::send;
import std::comm::chan;
import std::comm::recv;
import std::task;
fn a(c: chan<int>) { log "task a0"; log "task a1"; send(c, 10); }
2010-08-09 06:53:37 -07:00
2011-04-19 13:35:49 -07:00
fn main() {
let p = comm::port();
task::spawn(bind a(chan(p)));
task::spawn(bind b(chan(p)));
2011-07-27 14:19:39 +02:00
let n: int = 0;
n = recv(p);
n = recv(p);
2010-08-09 06:53:37 -07:00
log "Finished.";
}
fn b(c: chan<int>) {
2010-08-09 06:53:37 -07:00
log "task b0";
log "task b1";
log "task b2";
log "task b2";
log "task b3";
send(c, 10);
}