rust-pick-one

Picks one random element from an array

Usage

In Cargo.toml:

toml [dependencies] pick-one = "1.0.0"

In your lib.rs or main.rs:

```rust extern crate pick_one;

use pick_one;

let randomchoice = pickone::pickonestr(&["doggo"]); ```