3 lines
95 B
Ruby
3 lines
95 B
Ruby
graphemes = 'as⃝df̅'.scan(/\X/)
|
|
reversed = graphemes.reverse
|
|
graphemes.join #=> "f̅ds⃝a"
|