In Crystal, a String can be turned into an Array(Int32) of codepoints:
"abc".codepoints # [97,98,99]
Is there a way to turn the Array back into a String?
In Crystal, a String can be turned into an Array(Int32) of codepoints:
"abc".codepoints # [97,98,99]
Is there a way to turn the Array back into a String?