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