Skip to content

Instantly share code, notes, and snippets.

@mbrubeck
Created January 12, 2018 21:05
Show Gist options
  • Save mbrubeck/241706a45aef5b1c9436ef577871fde7 to your computer and use it in GitHub Desktop.
Save mbrubeck/241706a45aef5b1c9436ef577871fde7 to your computer and use it in GitHub Desktop.
extern crate unicode_segmentation;
use unicode_segmentation::UnicodeSegmentation;
fn main() {
let namaste = "नमस्ते";
println!("{}", namaste);
let etsaman = namaste.graphemes(true).rev().collect::<String>();
println!("{}", etsaman);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment