Logo

Programming-Idioms

History of Idiom 53 > diff from v13 to v14

Edit summary for version 14 by :

Version 13

2015-09-03, 15:36:04

Version 14

2015-09-03, 21:13:57

Idiom #53 Join a list of strings

Concatenate elements of string list x joined by the separator ", " to create a single string y.

Idiom #53 Join a list of strings

Concatenate elements of string list x joined by the separator ", " to create a single string y.

Code
y = Enum.join(list, ", ")