Expand description
This crate executes a highly specialized algorithm to dynamically generate a greeting in english to a given subject. It is serious business.
§Usage
This crate is on crates.io and can be used by adding
the crate to your dependencies in your project’s Cargo.toml file:
[dependencies]
fnichol-cime = { version = "0.7.0", default-features = false }Note that the default features include dependencies which are required to build a CLI and are not needed for the library.
§Examples
§Example: greeting a human
Assuming we have a human named Jane:
let greeting = fnichol_cime::greeting("Jane");
// #=> "Hello, Jane!"Functions§
- greeting
- Generates a greeting for a given subject.