public native join(separator as String) as String
Joins elements into a string using the separator.
import klyn.collections values = fs:[10, 20, 30] print(values.join(" / ")) # 10 / 20 / 30
Joined textual representation.