2011-08-12 20:34:19 -05:00
|
|
|
use std;
|
|
|
|
import std::task;
|
2011-09-02 17:34:58 -05:00
|
|
|
fn main() { task::spawn(bind child("Hello")); }
|
2010-08-11 17:05:33 -05:00
|
|
|
|
2011-09-12 05:39:38 -05:00
|
|
|
fn child(-s: str) {
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-08-12 20:34:19 -05:00
|
|
|
}
|