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