How do you turn an Array of codepoints (Int32) to a string?

Viewed 464

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?

2 Answers
Related