Hello world in Rust!
Run the binary:
hello-world-in-rust
# Output: hello world!Execute as crate:
let next_word = hello_world::hello();Add macro to print out the hello world message in a function.
#[hello_world]
fn main {
// The macro will generate println! to print the hello world message here.
}