Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
use unicode_segmentation::UnicodeSegmentation; pub fn reverse(input: &str) -> String { input.graphemes(true).rev().collect() }