2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 10:20:28 +00:00
|
|
|
#![allow(unused_must_use)]
|
2011-05-18 18:38:41 +00:00
|
|
|
/*
|
|
|
|
This is about the simplest program that can successfully send a
|
|
|
|
message.
|
|
|
|
*/
|
2013-05-25 02:35:29 +00:00
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
use std::sync::mpsc::channel;
|
2014-12-22 17:04:23 +00:00
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2014-03-09 21:58:32 +00:00
|
|
|
let (tx, rx) = channel();
|
2015-01-25 21:05:03 +00:00
|
|
|
tx.send(42);
|
2014-03-09 21:58:32 +00:00
|
|
|
let r = rx.recv();
|
2014-12-20 08:09:35 +00:00
|
|
|
println!("{:?}", r);
|
2011-08-10 16:27:22 +00:00
|
|
|
}
|