I am new to dhall with no Haskell background. How do I convert a list of string to a single string with values separated by comma? E.g.
["a", "b", "c"] -> "a,b,c"
I tried List/fold, but couldn't figure out an idiomatic way to get rid of the extra comma.
Thanks