14 lines
204 B
Rust
14 lines
204 B
Rust
|
// rustfmt-version: One
|
||
|
|
||
|
fn main() {
|
||
|
thread::spawn(|| {
|
||
|
while true {
|
||
|
println!("iteration");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
thread::spawn(|| loop {
|
||
|
println!("iteration");
|
||
|
});
|
||
|
}
|