rust/src/test/run-pass/task-life-0.rs

8 lines
97 B
Rust
Raw Normal View History

2011-08-12 20:34:19 -05:00
use std;
import std::task;
fn main() { task::spawn2("Hello", child); }
2010-08-11 17:05:33 -05:00
fn# child(&&s: str) {
2011-08-12 20:34:19 -05:00
}