2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-01-04 23:14:53 -06:00
|
|
|
fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
task::spawn(|| child(~"Hello") );
|
2012-01-04 23:14:53 -06:00
|
|
|
}
|
2010-08-11 17:05:33 -05:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn child(&&s: ~str) {
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-08-12 20:34:19 -05:00
|
|
|
}
|