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

8 lines
99 B
Rust
Raw Normal View History

2011-08-12 18:34:19 -07:00
use std;
import std::task;
fn main() { task::_spawn(bind child("Hello")); }
2010-08-11 15:05:33 -07:00
2011-07-27 14:19:39 +02:00
fn child(s: str) {
2011-08-12 18:34:19 -07:00
}