rust/src/test/run-pass/task-comm-chan-cleanup2.rs
2012-10-04 16:48:57 -07:00

7 lines
114 B
Rust

extern mod std;
fn main() {
let p = comm::Port();
let c = comm::Chan(&p);
comm::send(c, ~"coffee");
}