use rust_threadx_imxrt1170evk as _; fn main() { let mut count = 0_usize; loop { println!("Hello world! The count is {count}"); count = count.wrapping_add(1); std::thread::sleep(std::time::Duration::from_millis(500)) } }