Crate fnichol_cime[][src]

This crate executes a highly specialized algorithm to dynamically generate a greeting in english to a given subject. It is serious business.

Library 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.5.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.

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.