]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/spawn-fn.rs
Replace all ~"" with "".to_owned()
[rust.git] / src / test / run-pass / spawn-fn.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::task;
12
13 fn x(s: ~str, n: int) {
14     println!("{:?}", s);
15     println!("{:?}", n);
16 }
17
18 pub fn main() {
19     task::spawn(proc() x("hello from first spawned fn".to_owned(), 65) );
20     task::spawn(proc() x("hello from second spawned fn".to_owned(), 66) );
21     task::spawn(proc() x("hello from third spawned fn".to_owned(), 67) );
22     let mut i: int = 30;
23     while i > 0 { i = i - 1; println!("parent sleeping"); task::deschedule(); }
24 }