tschuchort
06/24/2017, 6:22 PM"{ items: "
and want to write ints from an array into it to get: `"{ items: 1 2 3 4 5 }". My first idea was something like:
intList.fold("{ items: ") { string, int ->
string += "$int "
} += "}"
but it doesnt seem to work