some text some text some text some text Here your can find a function that add two numbers and return the result // remove this line fn add_numbers(a: i32, b: i32) -> i32 { a + b } some text some text And here is is example how to print content to the stdout fn greet_person(name: &str) { println!("Hello, {}! Welcome to the Rust example.", name); }