Consider the following program:
fn recursive_call(x: u32) -> u32 { println!("x: {:?}", x); recursive_call(x +1) } fn main() { recursive_