2011-08-13 01:34:19 +00:00
|
|
|
use std;
|
2011-12-14 00:25:51 +00:00
|
|
|
import task;
|
2011-10-14 04:23:07 +00:00
|
|
|
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-07-13 22:44:09 +00:00
|
|
|
|
2011-08-13 01:34:19 +00:00
|
|
|
}
|