Function zummi::zummi [] [src]

pub fn zummi(phrase: &str) -> Option<String>

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")));