2013-06-27 23:53:40 +00:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2015-01-23 00:31:00 +00:00
|
|
|
use std::old_io::println;
|
2014-12-23 19:53:35 +00:00
|
|
|
use std::sync::mpsc::channel;
|
2014-12-22 17:04:23 +00:00
|
|
|
use std::thread::Thread;
|
2014-01-09 10:06:55 +00:00
|
|
|
|
2013-09-25 07:43:37 +00:00
|
|
|
pub fn main() {
|
2014-03-09 21:58:32 +00:00
|
|
|
let (tx, rx) = channel();
|
2013-06-27 23:53:40 +00:00
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
tx.send("hello, world").unwrap();
|
2014-06-03 19:38:00 +00:00
|
|
|
|
2015-01-06 05:59:45 +00:00
|
|
|
Thread::scoped(move|| {
|
2014-12-23 19:53:35 +00:00
|
|
|
println(rx.recv().unwrap());
|
2014-12-22 17:04:23 +00:00
|
|
|
}).join().ok().unwrap();
|
2013-06-27 23:53:40 +00:00
|
|
|
}
|