1
2
3
4
5
6
7
8
9
with builtins;

[
  (concatStringsSep "" [])
  (concatStringsSep "" ["foo" "bar" "xyzzy"])
  (concatStringsSep ", " ["foo" "bar" "xyzzy"])
  (concatStringsSep ", " ["foo"])
  (concatStringsSep ", " [])
]