hello_lib

Crates.iohello_lib
lib.rshello_lib
version0.1.6
sourcesrc
created_at2022-12-13 03:26:26.192189
updated_at2022-12-13 17:20:49.717904
descriptionDemonstrate Generics Function
homepage
repositoryhttps://github.com/gchandra10/hello_lib/
max_upload_size
id735426
size3,280
Ganesh Chandrasekaran (gchandra10)

documentation

https://docs.rs/hello_lib

README

Library for demonstration

Usage

    // Cargo.toml

    [dependencies]
    hello_lib = "0.1.6"
    // main.rs

    use hello_lib::hello;

    fn main() {
        println!("{}", hello("Rachel"));
        println!("{}", hello(31));
        println!("{}", hello(3.14));
        println!("{}", hello(true));
        println!("{}", hello('G'));
    }

Commit count: 15

cargo fmt