// functions3.rs // // Execute `rustlings hint functions3` or use the `hint` watch subcommand for a // hint. // I AM NOT DONE fn main() -> Result<(), Box> { let age = 15; while true { if age == 15 { std::process::exit(1); } } }