mirror of
https://github.com/NixOS/nix
synced 2025-06-25 02:21:16 +02:00
17 lines
240 B
Nix
17 lines
240 B
Nix
with builtins;
|
|
|
|
[
|
|
(concatStringsSep "" [ ])
|
|
(concatStringsSep "" [
|
|
"foo"
|
|
"bar"
|
|
"xyzzy"
|
|
])
|
|
(concatStringsSep ", " [
|
|
"foo"
|
|
"bar"
|
|
"xyzzy"
|
|
])
|
|
(concatStringsSep ", " [ "foo" ])
|
|
(concatStringsSep ", " [ ])
|
|
]
|