about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/eval-okay-concatstringssep.nix
blob: adc4c41bd551a675cff8ffa0258646176d2763fe (plain) (blame)
1
2
3
4
5
6
7
8
with builtins;

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