10 lines
143 B
Rust
10 lines
143 B
Rust
|
use std;
|
||
|
import std::comm;
|
||
|
|
||
|
fn main() {
|
||
|
let c = {
|
||
|
let p = comm::port();
|
||
|
comm::chan(p)
|
||
|
};
|
||
|
comm::send(c, "coffee");
|
||
|
}
|