streverse/
lib.rs

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