exercism-solutions/rust/reverse-string/src/lib.rs

4 lines
92 B
Rust
Raw Normal View History

2023-10-11 10:40:58 -05:00
pub fn reverse(input: &str) -> String {
todo!("Write a function to reverse {input}");
}