johnbiz_hello_world 0.1.1

A simple crate that greets people
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.14 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 239.07 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • johnnyrockets

johnbiz_hello_world

A simple Rust crate that greets people.

This project does nothing useful. It was created to test publishing a crate.

Example

use johnbiz_hello_world::greet;

fn main() {
    println!("{}", greet("Alice"));
}