Function zummi::zummi

source ·
pub fn zummi(phrase: &str) -> Option<String>
Expand description

Splits a phase of two words and shuffles their beginnings.

Example

extern crate zummi;
assert_eq!(zummi::zummi("hello world"), Some(String::from("wello horld")));