Last active
May 21, 2021 07:18
-
-
Save andrew-wilkes/cbf9e4514d6ed32b46963930f6e4abe2 to your computer and use it in GitHub Desktop.
Convert string array to string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func array_to_string(a: Array) -> String: | |
return PoolStringArray(a).join("\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment