2012-09-11 17:46:20 -07:00
|
|
|
extern mod std;
|
2011-11-14 13:49:56 -08:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let c = {
|
2012-08-27 14:22:25 -07:00
|
|
|
let p = comm::Port();
|
|
|
|
comm::Chan(p)
|
2011-11-14 13:49:56 -08:00
|
|
|
};
|
2012-07-13 22:57:48 -07:00
|
|
|
comm::send(c, ~"coffee");
|
2011-11-14 13:49:56 -08:00
|
|
|
}
|