rust/src/test/run-pass/task-comm-chan-cleanup2.rs
2012-08-27 17:22:18 -07:00

8 lines
119 B
Rust

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