8 lines
99 B
Rust
8 lines
99 B
Rust
use std;
|
|
import std::task;
|
|
fn main() { task::_spawn(bind child("Hello")); }
|
|
|
|
fn child(s: str) {
|
|
|
|
}
|