2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-05 14:32:05 -05:00
|
|
|
use pipes::{Port, Chan};
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-05-18 13:38:41 -05:00
|
|
|
/*
|
|
|
|
This is about the simplest program that can successfully send a
|
|
|
|
message.
|
|
|
|
*/
|
|
|
|
fn main() {
|
2012-12-11 14:26:41 -06:00
|
|
|
let (po, ch) = pipes::stream();
|
2012-07-25 16:05:06 -05:00
|
|
|
ch.send(42);
|
|
|
|
let r = po.recv();
|
2011-12-22 19:53:53 -06:00
|
|
|
log(error, r);
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|