Complete these tasks to reinforce what you learned in this module.
In the task stub, complete the program so it prints exactly the line below.
// Task 1: Print the greeting. See tasks/TASKS.md for expected output.
fn main() {
// YOUR CODE HERE: println! the exact line "Rust says: Hello from task 1!"
todo!("Print: Rust says: Hello from task 1!");
}