Activity 14 - My first stack

Name:

fn main() {
    let x = 5;
    let name = String::from("Bob"); // same as "Bob".to_string()
    print_info(x, &name);
}

fn print_info(age: i32, username: &str) {
    // DRAW DIAGRAM FOR WHEN THE CODE REACHES THIS POINT
    // What does memory look like at this exact point?
    
    println!("{} is {} years old", username, age);
}