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