pub fn rem_first_char(value: &str) -> String
Removes the first character of a string.
use wagon_utils::rem_first_char; let s = "123"; assert_eq!("23", rem_first_char(s));