3 lines
105 B
Text
3 lines
105 B
Text
$a = 'abc 🐧 def'
|
|
$enum = $a.EnumerateRunes() | % { "$_" }
|
|
-join $enum[$enum.length..0] # fed 🐧 cba
|