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

8 lines
90 B
Rust
Raw Normal View History

2011-08-13 01:34:19 +00:00
use std;
import task;
fn main() { task::spawn("Hello", child); }
2010-08-11 22:05:33 +00:00
2011-10-21 03:34:04 +00:00
fn child(&&s: str) {
2011-08-13 01:34:19 +00:00
}