rust/src/test/run-pass/task-comm-chan-cleanup2.rs

7 lines
113 B
Rust

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