7 lines
71 B
Rust
7 lines
71 B
Rust
|
fn main() -> () {
|
||
|
spawn child("Hello");
|
||
|
}
|
||
|
|
||
|
fn child(str s) {
|
||
|
|
||
|
}
|