hello-world-in-rust 0.1.1

Hello World!
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 2 items with examples
  • Size
  • Source code size: 19.17 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 98.76 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • AlvinHon/hello_world_rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • AlvinHon

version workflow status codecov status

Hello World

Hello world in Rust!

Run the binary:

hello-world-in-rust
# Output: hello world!

Execute as crate:

let next_word = hello_world::hello();

Hello World Derive

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.
}