Take the string "Rust" and print it reversed.
"Rust"
Expected output:
tsuR
Hints:
.chars()
.rev()
.collect::<String>()
String