8 lines
95 B
Rust
8 lines
95 B
Rust
use std;
|
|
import std::task;
|
|
fn main() { task::spawn("Hello", child); }
|
|
|
|
fn child(&&s: str) {
|
|
|
|
}
|