1
2
3
pub fn str_rev(s: &str) -> String {
  s.chars().rev().collect()
 }