const MAX_ATTEMPTS: u32 = 5; fn main() { println!("You have {} attempts remaining", MAX_ATTEMPTS); }
Click Run to execute this code.