blob: ae7eee4719412133b7fe6e9fc9a72236df2d788c [file]
// rustfmt-style_edition: 2024
fn main() {
thread::spawn(|| {
while true {
println!("iteration");
}
});
thread::spawn(|| {
loop {
println!("iteration");
}
});
}