8 lines
119 B
Rust
8 lines
119 B
Rust
use std;
|
|
import comm;
|
|
|
|
fn main() {
|
|
let p = comm::Port();
|
|
let c = comm::Chan(p);
|
|
comm::send(c, ~"coffee");
|
|
} |